diff options
author | arun <arun@nubati.net> | 2007-06-01 13:40:44 +0000 |
---|---|---|
committer | arun <arun> | 2007-06-01 13:40:44 +0000 |
commit | 05c0e5ebd24477c861b06884e60db11672127569 (patch) | |
tree | d1e3c9e82016643081b4722ca5f63266a4687262 /index.php | |
parent | 3bcf4379ee051e83db6bdd80b1ff04ad4b41206a (diff) | |
download | e-DoKo-05c0e5ebd24477c861b06884e60db11672127569.tar.gz e-DoKo-05c0e5ebd24477c861b06884e60db11672127569.tar.bz2 e-DoKo-05c0e5ebd24477c861b06884e60db11672127569.zip |
bugfix: last revision had some typos, fixed now
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1057,7 +1057,7 @@ else if(myisset("me")) else echo "(wedding)"; - if(subst_compare($GT,"solo",0,4) && $party=="re") + if(substr_compare($GT,"solo",0,4)==0 && $party=="re") echo "($GT)"; /* add point calls */ @@ -1065,8 +1065,8 @@ else if(myisset("me")) echo " $party $call "; echo "<br />\n"; - echo " local time: ".date("Y-m-d H:i:s")."\n"; - echo " last login: ".date("Y-m-d H:i:s",$unixtime)."<br />\n"; + echo " local time: ".date("Y-m-d H:i:s")."<br />\n"; + echo " last login: ".date("Y-m-d H:i:s",$lastlogin)."<br />\n"; echo " </span>\n"; } |