BUGIFX: output was displayed twice
[e-DoKo.git] / stats.php
index ba32a9269077c0954b202b96e87becfe8592c65c..44378d455b479c6486da35803cfde2e87000ca06 100644 (file)
--- a/stats.php
+++ b/stats.php
@@ -29,7 +29,7 @@ if(myisset("logout"))
     session_destroy();
     $_SESSION = array();
     echo "<div class=\"message\"><span class=\"bigger\">You are now logged out!</span><br />\n".
-      "(<a href=\"$host\">This will take you back to the home-page</a>)</div>";
+      "(<a href=\"$INDEX\">This will take you back to the home-page</a>)</div>";
   }
 /* user status page */
 else if( isset($_SESSION["name"]) )
@@ -38,7 +38,6 @@ else if( isset($_SESSION["name"]) )
      $email     = DB_get_email_by_name($name);
      $password  = DB_get_passwd_by_name($name);
 
-
      /* verify password and email */
      if(strlen($password)!=32)
        $password = md5($password);
@@ -50,18 +49,9 @@ else if( isset($_SESSION["name"]) )
 
      if($ok)
        {
-        DB_get_PREF($myid);
-
-        $time     = DB_get_user_timestamp($myid);
-        $unixtime = strtotime($time);
+        output_status();
 
-        $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_get_PREF($myid);
 
         DB_update_user_timestamp($myid);
 
@@ -238,7 +228,7 @@ else if( isset($_SESSION["name"]) )
    {
      /* send them back to the login page */
     echo "<div class=\"message\"><span class=\"bigger\">You need to log in!</span><br />\n".
-      "(<a href=\"$host\">This will take you back to the login-page</a>)</div>";
+      "(<a href=\"$INDEX\">This will take you back to the login-page</a>)</div>";
    }
 
 output_footer();