diff options
author | arun <arun@nubati.net> | 2007-01-12 14:49:15 +0000 |
---|---|---|
committer | arun <arun> | 2007-01-12 14:49:15 +0000 |
commit | b8227ddb12516d5bdb0db8a3ec46083b02caee79 (patch) | |
tree | 7d5c85cebfe06c8a394d585dc130eb346792ae31 /index.php | |
parent | 88aaf2c34d0b3cc7eff994955a144a8d27b67c7a (diff) | |
download | e-DoKo-b8227ddb12516d5bdb0db8a3ec46083b02caee79.tar.gz e-DoKo-b8227ddb12516d5bdb0db8a3ec46083b02caee79.tar.bz2 e-DoKo-b8227ddb12516d5bdb0db8a3ec46083b02caee79.zip |
added email to all players, in case someone cancled the game at the beginning
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -152,15 +152,16 @@ else if(myisset("me")) { if($_REQUEST["in"] == "no") { - echo "TODO: email everyone that the game has been canceled.<br />"; - /*something like need to modify for DB backend - for($i=0;$i<4;$i++) - { - $message = "Hello ".$player[$hash[$i]]["name"].",\n\n". - "the game has been canceled due to the request of one of the players.\n"; - mymail($player[$hash[$i]]["email"],"[DoKo-Debug] the game has been canceled",$message); - } - */ + $message = "Hello, \n\n". + "the game has been canceled due to the request of one of the players.\n"; + + $userids = DB_get_all_userid_by_gameid($gameid); + foreach($userids as $user) + { + $To = DB_get_email_by_userid($user); + mymail($To,"[DoKo] game over",$message); + } + /* delete everything from the dB */ DB_cancel_game($me); } |