X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Fcancelgame.php;h=22be185608c9445cc963199b316b08beba7cd1e4;hp=357d226d9becc6a3b0a86915c5fd075d6094d33a;hb=e79efbc650588eb3e07d82c183b6d7b1c00502d8;hpb=1c3c341f53ce5de7e9d4bcc63e43a925faec3f48 diff --git a/include/cancelgame.php b/include/cancelgame.php index 357d226..22be185 100644 --- a/include/cancelgame.php +++ b/include/cancelgame.php @@ -36,20 +36,19 @@ $myname = DB_get_name('hash',$me); $r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " ); if(time()-strtotime($r[0]) > 60*60*24*30) /* = 1 month */ { - $message = "Hello, \n\n". - "Game ".DB_format_gameid($gameid). - " has been canceled since nothing happend for a while and $myname requested it.\n"; + $message = "Game ".DB_format_gameid($gameid). + " has been canceled since nothing happend for a while and $myname requested it.\n\n"; /* email to all players */ $userids = DB_get_all_userid_by_gameid($gameid); foreach($userids as $user) { - $To = DB_get_email('userid',$user); - mymail($To,$EmailName."game ".DB_format_gameid($gameid)." canceled (timed out)",$message); + $subject = "Game ".DB_format_gameid($gameid)." canceled (timed out)"; + mymail($user,$subject,$message); } - /* delete everything from the dB */ - DB_cancel_game($me); + /* set gamestatus to canceled */ + cancel_game('timedout',$gameid); echo "

Game ".DB_format_gameid($gameid). " has been canceled.

";