summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-04-10 08:58:23 +0000
committerarun <arun>2007-04-10 08:58:23 +0000
commit4b94fd36ed89060493ac80d89db3c1e304b13623 (patch)
tree6fadfc070a2af690a96b52c2ce2f063d80f51c6b /db.php
parenta0b3efd697ed19fe2bf204868ab5920e4af5d467 (diff)
downloade-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.tar.gz
e-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.tar.bz2
e-DoKo-4b94fd36ed89060493ac80d89db3c1e304b13623.zip
removed one debug message; added timestamp update for game when playing a card
Diffstat (limited to 'db.php')
-rw-r--r--db.php7
1 files changed, 7 insertions, 0 deletions
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));