diff options
author | Arun Persaud <arun@nubati.net> | 2008-08-17 17:27:42 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-08-17 17:27:42 -0700 |
commit | d0720e088954dd4028037bbb9aeeca29ab4c47ac (patch) | |
tree | db59ef125060332cdafd8b8d55a68f90dea07c3d /include | |
parent | 246c48b885be01d7d6eb63167b6d346cd314120d (diff) | |
download | e-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.tar.gz e-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.tar.bz2 e-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.zip |
BUGFIX: & instead of & in email text
& should only be used in HTML output. Changed this a while ago, but seems like I missed one.
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/game.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/game.php b/include/game.php index e471d5d..a7004d6 100644 --- a/include/game.php +++ b/include/game.php @@ -832,7 +832,7 @@ switch($mystatus) DB_set_hand_status_by_hash($userhash,'poverty'); $message = "Someone has poverty, it's your turn to decide, if you want to take the trump. Please visit:". - " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ; + " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ; mymail($To,$EmailName." poverty (game ".DB_format_gameid($gameid).")",$message); } } |