moved files to top of domain and found a few links that didn't use the one defined...
[e-DoKo.git] / index.php
index 40920debcf9072f8879233a7e4fb71752e2cca74..baa5cbd2e3555b40833c10a64f2831ba2c245ea6 100644 (file)
--- a/index.php
+++ b/index.php
@@ -280,9 +280,6 @@ else if(isset($_REQUEST["me"]))
        break;
       case 'play':
       case 'gameover': /*both entries here,  so that the tricks are visible for both in case of 'play' there is a break later that skips the last part*/
-       display_news();
-       display_status();
-
        /* display local time */
        echo "<div class=\"time\">\n Local times:<table>";
        $users = array();
@@ -297,6 +294,7 @@ else if(isset($_REQUEST["me"]))
            echo "<tr> <td>$name</td> <td>".date("Y-m-d H:i:s")."</td></tr>\n";
          };
        echo "</table>\n</div>\n";
+       display_status();
 
        /* display links to other games */
        echo "<div class=\"over\">\n";
@@ -309,6 +307,8 @@ else if(isset($_REQUEST["me"]))
        echo "</form>\n";
        echo "</div>\n";
 
+       display_news();
+
        $gamestatus = DB_get_game_status_by_gameid($gameid);
        if($gamestatus == 'pre')
          {
@@ -593,15 +593,14 @@ else if(isset($_REQUEST["me"]))
        $zone = return_timezone($offset);
        date_default_timezone_set($zone);
 
-       echo "ok. your logged in, now what? :) <br />last login: ";
-       echo date("r",$unixtime)."<br />";
+       echo "last login: ".date("r",$unixtime)."<br />";
 
        DB_update_user_timestamp($uid);
 
        echo "<p>these are the games you are playing in:<br />\n";
        $result = mysql_query("SELECT hash,game_id from Hand WHERE user_id='$uid' AND status<>'gameover'" );
        while( $r = mysql_fetch_array($result,MYSQL_NUM))
-         echo "<a href=\"http://doko.nubati.net/database/index.php?me=".$r[0]."\">game #".$r[1]." </a><br />";
+         echo "<a href=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />";
        echo "</p>\n";
 
        $names = DB_get_all_names();
@@ -610,7 +609,7 @@ else if(isset($_REQUEST["me"]))
          echo "$name <br />\n";
        echo "</p>\n";
        echo "<p>Want to start a new game? remember 4 names from the list above and visit ".
-         "<a href=\"http://doko.nubati.net/database/index.php?new\">this page.</a></p>";
+         "<a href=\"".$host."?new\">this page.</a></p>";
       }
     else
       {