diff options
author | arun <arun@nubati.net> | 2006-12-13 19:18:12 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-13 19:18:12 +0000 |
commit | 92a2164d4f1d5367b9325a8d65089abe79ee653b (patch) | |
tree | 954a04535c443a9a155aa9dca5a1c9db3ad1bbb5 /index.php | |
parent | b10b46d1ddab03d006c4d5d5c2a5aa8e90a792c0 (diff) | |
download | e-DoKo-92a2164d4f1d5367b9325a8d65089abe79ee653b.tar.gz e-DoKo-92a2164d4f1d5367b9325a8d65089abe79ee653b.tar.bz2 e-DoKo-92a2164d4f1d5367b9325a8d65089abe79ee653b.zip |
a bit more cleanup in the layout
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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') { |