summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2010-02-04 20:25:16 -0800
committerArun Persaud <arun@nubati.net>2010-02-04 20:26:51 -0800
commit3b407a98fe0243cef87fdd64aeb4f567cca41f40 (patch)
tree0ce61db9f25c587e21d06cd385f9a51ad8dde683
parent3851854ad07430dc62337d482e811bf9363480a5 (diff)
downloade-DoKo-3b407a98fe0243cef87fdd64aeb4f567cca41f40.tar.gz
e-DoKo-3b407a98fe0243cef87fdd64aeb4f567cca41f40.tar.bz2
e-DoKo-3b407a98fe0243cef87fdd64aeb4f567cca41f40.zip
BUGFIX: show correct name of all players, when looking at games of other players
the name of the player who had the same cards wasn't displayed, instead "your cards where" was shown.
-rw-r--r--include/game.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/game.php b/include/game.php
index 0a40bab..e20ea9a 100644
--- a/include/game.php
+++ b/include/game.php
@@ -1962,7 +1962,15 @@ switch($mystatus)
{
$oldcards = DB_get_all_hand($me);
$oldcards = mysort($oldcards,$gametype);
- echo "Your cards were: <br />\n";
+
+ if(isset($_SESSION['id']) && $myid==$_SESSION['id'])
+ echo "Your cards were: <br />\n";
+ else
+ {
+ $name = DB_get_name('userid',$myid);
+ echo "$name's were: <br />\n";
+ }
+
foreach($oldcards as $card)
display_card($card,$PREF['cardset']);