diff options
author | Arun Persaud <arun@nubati.net> | 2008-06-28 04:23:28 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-06-28 04:23:28 -0700 |
commit | cd4cbd4a1cce2c35a6a78b1b957c17389001b4b1 (patch) | |
tree | f42e40d934677469f8686f6864b33907eb52aa9e /include/cancelgame.php | |
parent | 271d5076af98eafe227eef872d8be63e57292a86 (diff) | |
parent | 27cbc14d28d072c37474ac1e96d677b88dde27ba (diff) | |
download | e-DoKo-cd4cbd4a1cce2c35a6a78b1b957c17389001b4b1.tar.gz e-DoKo-cd4cbd4a1cce2c35a6a78b1b957c17389001b4b1.tar.bz2 e-DoKo-cd4cbd4a1cce2c35a6a78b1b957c17389001b4b1.zip |
Merge branch 'master' of http://nubati.net/git/e-DoKo
Diffstat (limited to 'include/cancelgame.php')
-rw-r--r-- | include/cancelgame.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/cancelgame.php b/include/cancelgame.php index 5b85534..43d3274 100644 --- a/include/cancelgame.php +++ b/include/cancelgame.php @@ -10,9 +10,7 @@ output_status(); if(!myisset("me")) { echo "Hmm, you really shouldn't mess with the urls.<br />\n"; - output_footer(); - DB_close(); - exit(); + return; } $me = $_REQUEST["me"]; @@ -23,9 +21,7 @@ if(!$myid) { echo "Can't find you in the database, please check the url.<br />\n"; echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>."; - output_footer(); - DB_close(); - exit(); + return; } DB_update_user_timestamp($myid); |