summaryrefslogtreecommitdiffstats
path: root/output.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-11-08 20:58:20 +0100
committerArun Persaud <arun@nubati.net>2007-11-08 22:46:49 +0100
commit9732aef914603924915bde24684f322843ead085 (patch)
treeba79089c9ecdae62752e396fa911c22fb913f5ab /output.php
parenta5684ef10fbd20dd335b99a0d53555498842268a (diff)
downloade-DoKo-9732aef914603924915bde24684f322843ead085.tar.gz
e-DoKo-9732aef914603924915bde24684f322843ead085.tar.bz2
e-DoKo-9732aef914603924915bde24684f322843ead085.zip
NEW FEATURE: addicted people can turn of a lot of the email spam and just check online
all emails saying: it's your turn can be turned off now by a user preference
Diffstat (limited to 'output.php')
-rw-r--r--output.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/output.php b/output.php
index a8d6bf1..39f67b0 100644
--- a/output.php
+++ b/output.php
@@ -10,11 +10,18 @@ function output_user_settings()
echo "<h4> Settings </h4>\n";
echo "<a href=\"index.php?passwd=ask\">change password</a><br />";
+ echo "<h5> Card set </h5>\n";
if( $PREF["cardset"] == "english" )
echo "<a href=\"index.php?setpref=germancards\">use german cards</a><br />";
else
echo "<a href=\"index.php?setpref=englishcards\">use english cards</a> <br />";
+ echo "<h5> Email </h5>\n";
+ if( $PREF["email"] == "emailaddict" )
+ echo "<a href=\"index.php?setpref=emailnonaddict\">I'm not addicted (emails for each move)</a><br />";
+ else
+ echo "<a href=\"index.php?setpref=emailaddict\">Addicted (minimal amount of emails)</a> <br />";
+
echo "</div>\n";
return;