summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-05-22 09:52:17 +0000
committerarun <arun>2007-05-22 09:52:17 +0000
commit566c61f757725e12846b984d415c815207c0ac3e (patch)
tree54862870b00b6bf20ab86e543d4d7ad1f97fb1b5 /index.php
parent0703a75b3d53fd28f21f3dbabf2c1630da46bd2c (diff)
downloade-DoKo-566c61f757725e12846b984d415c815207c0ac3e.tar.gz
e-DoKo-566c61f757725e12846b984d415c815207c0ac3e.tar.bz2
e-DoKo-566c61f757725e12846b984d415c815207c0ac3e.zip
fix: missed a ;
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index e8fffb7..0fc89de 100644
--- a/index.php
+++ b/index.php
@@ -1316,11 +1316,11 @@ else if(myisset("me"))
}
if(sizeof($h))
$header = "CC: ".join(",",$h)."\r\n";
-
+
foreach($userids as $user)
{
$To = DB_get_email_by_userid($user);
- $hash = DB_get_hash_from_gameid_and_userid($gameid,$user)
+ $hash = DB_get_hash_from_gameid_and_userid($gameid,$user);
$mymessage = $message."Use this link to have a look at the game: ".$host."?me=".$hash."\n\n" ;
mymail($To,$EmailName."game over (game $gameid)",$mymessage,$header);
}