diff options
author | Arun Persaud <arun@nubati.net> | 2007-12-16 14:54:06 +0100 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-12-16 22:33:43 +0100 |
commit | a28cbfa660f2ff982f1cdcee41c09cec772d84af (patch) | |
tree | e2c70082d93a44b373b6d57899590ac01dcc0d5c /stats.php | |
parent | 672791e22e1de68e278e2f0d5c6d7331d5994ecb (diff) | |
download | e-DoKo-a28cbfa660f2ff982f1cdcee41c09cec772d84af.tar.gz e-DoKo-a28cbfa660f2ff982f1cdcee41c09cec772d84af.tar.bz2 e-DoKo-a28cbfa660f2ff982f1cdcee41c09cec772d84af.zip |
BUGFIX: time display used wrong timezones. also optimized things a bit
Got rid of a few db-queries for getting the right timezone. The timezone was also set after the timefunction was called and therefore the timezone didn't have any effect.
Diffstat (limited to 'stats.php')
-rw-r--r-- | stats.php | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -52,17 +52,6 @@ else if( isset($_SESSION["name"]) ) { DB_get_PREF($myid); - $time = DB_get_user_timestamp($myid); - $unixtime = strtotime($time); - - $offset = DB_get_user_timezone($myid); - $zone = return_timezone($offset); - date_default_timezone_set($zone); - - output_status($name); - - echo "<div class=\"lastlogin\">last login: ".date("r",$unixtime)."</div>"; - DB_update_user_timestamp($myid); display_user_menu(); |