BUFIX: fixed a typo
[e-DoKo.git] / include / cancelgame.php
index 224020356f6bf95efc5965905b53255f9d3f639d..22be185608c9445cc963199b316b08beba7cd1e4 100644 (file)
@@ -36,9 +36,8 @@ $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);
@@ -48,8 +47,8 @@ if(time()-strtotime($r[0]) > 60*60*24*30) /* = 1 month */
        mymail($user,$subject,$message);
       }
 
-    /* delete everything from the dB */
-    DB_cancel_game($me);
+    /* set gamestatus to canceled */
+    cancel_game('timedout',$gameid);
 
     echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
       " has been canceled.<br /><br /></p>";