summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-06-21 16:22:36 +0200
committerArun Persaud <arun@nubati.net>2007-06-25 09:11:38 +0200
commit822dd99d21ade0e223428976d5f9d72de1e3439b (patch)
treebe1442873cc115acbd2acb8742cfe94a6f50e39f /db.php
parent26c07fd03d0bf3bdd6142f0474b625afcfae508b (diff)
downloade-DoKo-822dd99d21ade0e223428976d5f9d72de1e3439b.tar.gz
e-DoKo-822dd99d21ade0e223428976d5f9d72de1e3439b.tar.bz2
e-DoKo-822dd99d21ade0e223428976d5f9d72de1e3439b.zip
CLEANUP: counting points, prepare for keeping track of game points
use the database now to add up points, cleaned up the code a bit (counting points was done in different places), don't use score table for points from cards any more
Diffstat (limited to 'db.php')
-rw-r--r--db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db.php b/db.php
index a78afb6..1c20b8e 100644
--- a/db.php
+++ b/db.php
@@ -466,7 +466,7 @@ function DB_get_current_trickid($gameid)
if(!$sequence || $sequence==4)
{
- mysql_query("INSERT INTO Trick VALUES (NULL,NULL,NULL, ".DB_quote_smart($gameid).")");
+ mysql_query("INSERT INTO Trick VALUES (NULL,NULL,NULL, ".DB_quote_smart($gameid).",NULL)");
$trickid = mysql_insert_id();
$sequence = 1;
$number++;