summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-05-22 09:49:07 +0000
committerarun <arun>2007-05-22 09:49:07 +0000
commit0703a75b3d53fd28f21f3dbabf2c1630da46bd2c (patch)
tree3ddc45eb25738da7a7b9d991461b8d2e15b4ed05 /db.php
parent12cfb198f8d644e370d646a7c42b37291a466089 (diff)
downloade-DoKo-0703a75b3d53fd28f21f3dbabf2c1630da46bd2c.tar.gz
e-DoKo-0703a75b3d53fd28f21f3dbabf2c1630da46bd2c.tar.bz2
e-DoKo-0703a75b3d53fd28f21f3dbabf2c1630da46bd2c.zip
feature: added link to game in final email, CC'ed people in final email
Diffstat (limited to 'db.php')
-rw-r--r--db.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/db.php b/db.php
index 98e7724..64a80b9 100644
--- a/db.php
+++ b/db.php
@@ -704,5 +704,32 @@ function DB_set_party_by_hash($hash,$party)
return;
}
+function DB_get_PREF($myid)
+{
+ global $PREF;
+
+ $result = mysql_query("SELECT value from User_Prefs".
+ " WHERE user_id='$myid' AND pref_key='cardset'" );
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+ if($r)
+ {
+ if($r[0]=="germancards" && (time()-strtotime( "2009-12-31 23:59:59")<0) ) /* licence only valid until then */
+ $PREF["cardset"]="altenburg";
+ else
+ $PREF["cardset"]="english";
+ }
+ else
+ $PREF["cardset"]="english";
+
+ $result = mysql_query("SELECT value from User_Prefs".
+ " WHERE user_id='$myid' AND pref_key='ccemail'" );
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+ if($r)
+ $PREF["ccemail"]=$r[0];
+ else
+ $PREF["ccemail"]="no";
+
+ return;
+}
?> \ No newline at end of file