diff options
author | arun <arun@nubati.net> | 2007-05-22 09:52:17 +0000 |
---|---|---|
committer | arun <arun> | 2007-05-22 09:52:17 +0000 |
commit | 566c61f757725e12846b984d415c815207c0ac3e (patch) | |
tree | 54862870b00b6bf20ab86e543d4d7ad1f97fb1b5 | |
parent | 0703a75b3d53fd28f21f3dbabf2c1630da46bd2c (diff) | |
download | e-DoKo-566c61f757725e12846b984d415c815207c0ac3e.tar.gz e-DoKo-566c61f757725e12846b984d415c815207c0ac3e.tar.bz2 e-DoKo-566c61f757725e12846b984d415c815207c0ac3e.zip |
fix: missed a ;
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |