diff options
author | Arun Persaud <arun@nubati.net> | 2009-05-11 17:39:16 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2009-05-11 22:02:45 -0700 |
commit | 268859f56cb8f19b65eca8550dd6a71b6d475971 (patch) | |
tree | f01fc7c97a339fa601fdd2eba64d3db8039da65a /include/cancelgame.php | |
parent | 03d6cd5ba13a0aac918734c1f797df4f149d9194 (diff) | |
download | e-DoKo-268859f56cb8f19b65eca8550dd6a71b6d475971.tar.gz e-DoKo-268859f56cb8f19b65eca8550dd6a71b6d475971.tar.bz2 e-DoKo-268859f56cb8f19b65eca8550dd6a71b6d475971.zip |
BUGFIX: some email messages had newlines missing before the footer
all emails now have a "\n\n" at the end of the message.
Diffstat (limited to 'include/cancelgame.php')
-rw-r--r-- | include/cancelgame.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cancelgame.php b/include/cancelgame.php index 71bb58b..b0b4db9 100644 --- a/include/cancelgame.php +++ b/include/cancelgame.php @@ -38,7 +38,7 @@ 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"; + " 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); |