From: arun Date: Tue, 10 Apr 2007 08:58:23 +0000 (+0000) Subject: removed one debug message; added timestamp update for game when playing a card X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=4b94fd36ed89060493ac80d89db3c1e304b13623;hp=a0b3efd697ed19fe2bf204868ab5920e4af5d467 removed one debug message; added timestamp update for game when playing a card --- diff --git a/db.php b/db.php index 31098d4..b3651bd 100644 --- a/db.php +++ b/db.php @@ -446,6 +446,13 @@ function DB_get_all_names() return $names; } +function DB_update_game_timestamp($gameid) +{ + mysql_query("UPDATE Game SET mod_date = CURRENT_TIMESTAMP WHERE id=".DB_quote_smart($gameid)); + return; +} + + function DB_update_user_timestamp($userid) { mysql_query("UPDATE User SET last_login = CURRENT_TIMESTAMP WHERE id=".DB_quote_smart($userid)); diff --git a/index.php b/index.php index 7addf0e..a0029f0 100644 --- a/index.php +++ b/index.php @@ -790,9 +790,11 @@ else if(myisset("me")) /* mark card as played */ mysql_query("UPDATE Hand_Card SET played='true' WHERE hand_id='$handid' AND card_id=". DB_quote_smart($card)); - + /* update Game timestamp */ + DB_update_game_timestamp($gameid); + /* check for schweinchen */ - echo "schweinchen = ".$GAME["schweinchen"]." --$card-
"; + //echo "schweinchen = ".$GAME["schweinchen"]." --$card-
"; if($card == 19 || $card == 20 ) { $GAME["schweinchen"]++;