summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2008-08-17 17:27:42 -0700
committerArun Persaud <arun@nubati.net>2008-08-17 17:27:42 -0700
commitd0720e088954dd4028037bbb9aeeca29ab4c47ac (patch)
treedb59ef125060332cdafd8b8d55a68f90dea07c3d
parent246c48b885be01d7d6eb63167b6d346cd314120d (diff)
downloade-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.tar.gz
e-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.tar.bz2
e-DoKo-d0720e088954dd4028037bbb9aeeca29ab4c47ac.zip
BUGFIX: &amp; instead of & in email text
&amp; 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>
-rw-r--r--include/game.php2
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&amp;me=".$userhash."\n\n" ;
+ " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
mymail($To,$EmailName." poverty (game ".DB_format_gameid($gameid).")",$message);
}
}