diff options
author | Arun Persaud <arun@nubati.net> | 2011-03-20 00:40:54 -0700 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2011-03-20 00:40:54 -0700 |
commit | 08583506b9bdb4ef2d30bad9752c960f20fe54b6 (patch) | |
tree | f8fac0f7b889afccf3bc0d3b30fd523c0ff2ee07 /include/reminder.php | |
parent | 455372db985024563b26bfa5af9c91b2a8e53c06 (diff) | |
download | e-DoKo-08583506b9bdb4ef2d30bad9752c960f20fe54b6.tar.gz e-DoKo-08583506b9bdb4ef2d30bad9752c960f20fe54b6.tar.bz2 e-DoKo-08583506b9bdb4ef2d30bad9752c960f20fe54b6.zip |
CLEANUP: added gameid to mymail and generate subject line in mymail directly
this way it will be easier to add translation and also to add the gameid into the database for the digest
Diffstat (limited to 'include/reminder.php')
-rw-r--r-- | include/reminder.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/reminder.php b/include/reminder.php index 1031dec..502c408 100644 --- a/include/reminder.php +++ b/include/reminder.php @@ -67,8 +67,7 @@ if( (time()-strtotime($r[0]) > 60*60*24*7) && ($r[2]!='gameover') ) /* = 1 week else { DB_set_reminder($r[1],$gameid); - $subject ='Reminder: game '.DB_format_gameid($gameid)." it's your turn"; - mymail($r[1],$subject,$message); + mymail($r[1],$gameid, GAME_REMINDER, $message); echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid). ": an email has been sent out.<br /><br /></p>"; |