diff options
author | Arun Persaud <arun@nubati.net> | 2008-10-20 19:54:13 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-10-20 20:34:17 -0700 |
commit | 2666bb58429c385b716d2ffd5d5fe9a9e7af4f45 (patch) | |
tree | 8b47bb79a20981ccc123d3e18587dcad4da89ebc /include/game.php | |
parent | e1b3eaa640a1e4249b8406e946bd65e902aadfb9 (diff) | |
download | e-DoKo-2666bb58429c385b716d2ffd5d5fe9a9e7af4f45.tar.gz e-DoKo-2666bb58429c385b716d2ffd5d5fe9a9e7af4f45.tar.bz2 e-DoKo-2666bb58429c385b716d2ffd5d5fe9a9e7af4f45.zip |
BUGFIX: make user menu and personal notes appear again
had them only shown when player was logged in, but there is really no reason to not show them to players who are not logged in in an ongoing game (only the correct player should get to a page with an ongoing game)
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/game.php')
-rw-r--r-- | include/game.php | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/include/game.php b/include/game.php index 6141ab2..cfd1750 100644 --- a/include/game.php +++ b/include/game.php @@ -109,7 +109,15 @@ if( $mystatus!='gameover' ) if($note != '') DB_insert_note($note,$gameid,$myid); }; -output_user_notes($myid,$gameid,$mystatus); + +/* make sure that we don't show the notes to the wrong person + * (e.g. other people looking at an old game) + */ +if( $mystatus != 'gameover' || + ( $mystatus == 'gameover' && + isset($_SESSION['id']) && + $myid == $_SESSION['id'])) + output_user_notes($myid,$gameid,$mystatus); /* handle calls */ if(myisset('call') && $_REQUEST['call'] == '120' && can_call(120,$me)) @@ -1937,10 +1945,24 @@ switch($mystatus) default: myerror("error in testing the status"); } -/* output left menu */ -display_user_menu(); -/* output right menu */ +/* output other games where it is the users turn + * make sure that the people looking at old games don't see the wrong games here + */ +if( $mystatus != 'gameover' ) + display_user_menu($myid); +else if( $mystatus == 'gameover' && + isset($_SESSION['id']) ) + { + display_user_menu($_SESSION['id']); + } +else + { + echo "<div class=\"usermenu\">\n"; + echo "It's your turn in these games:<br />\n"; + echo "Please log in to see this information.\n"; + echo "</div>\n"; + } /* display rule set for this game */ echo "<div class=\"gameinfo\">\n"; |