summaryrefslogtreecommitdiffstats
path: root/include/functions.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2009-01-16 21:29:18 -0800
committerArun Persaud <arun@nubati.net>2009-01-16 21:29:18 -0800
commit26aa6987c5da1f102e81c4625ed8e7b116c7590b (patch)
treee0d7ffeccb49c2358cab6584428ec3ae06d52d56 /include/functions.php
parente7f6b5bf335e80c40219842829548b48569172a6 (diff)
downloade-DoKo-26aa6987c5da1f102e81c4625ed8e7b116c7590b.tar.gz
e-DoKo-26aa6987c5da1f102e81c4625ed8e7b116c7590b.tar.bz2
e-DoKo-26aa6987c5da1f102e81c4625ed8e7b116c7590b.zip
NEW FEATURE: always show current score on main page
show the current score as the link to the score table
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.php b/include/functions.php
index cb09d6c..9103c6f 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -727,7 +727,7 @@ function can_call($what,$hash)
function display_table ()
{
- global $gameid, $GT, $debug,$INDEX,$defaulttimezone;
+ global $gameid, $GT, $debug,$INDEX,$defaulttimezone,$session;
global $RULES,$GAME,$gametype;
$result = DB_query("SELECT User.fullname as name,".
@@ -863,8 +863,8 @@ function display_table ()
}
echo " <br />\n";
- echo " <span title=\"".date("Y-m-d H:i:s",$timenow). "\">local time</span>\n";
- echo " <span title=\"".date("Y-m-d H:i:s",$lastlogin)."\">last login</span>\n";
+ echo " <span title=\"local time: ".date("Y-m-d H:i:s",$timenow). " ".
+ "last login: ".date("Y-m-d H:i:s",$lastlogin)."\">time info</span>\n";
echo " </div>\n";
}