From 880dfb2e715a3770de56fb525f5c90d28a6ccb4c Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 10 May 2008 12:15:35 -0700 Subject: NEW FEATURE: new settings page, user can now change timezone rewrote the settings page, timezone can now be changed, the user menu shows up on the left on the pref page. Added a link to the pref-page in the left menu. Signed-off-by: Arun Persaud --- include/db.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'include/db.php') diff --git a/include/db.php b/include/db.php index a9bdffd..208334f 100644 --- a/include/db.php +++ b/include/db.php @@ -95,6 +95,16 @@ function DB_get_passwd_by_name($name) return ""; } +function DB_get_passwd_by_userid($id) +{ + $r = DB_query_array("SELECT password FROM User WHERE id=".DB_quote_smart($id).""); + + if($r) + return $r[0]; + else + return ""; +} + function DB_check_recovery_passwords($password,$email) { $r = DB_query_array("SELECT User.id FROM User". @@ -673,7 +683,8 @@ function DB_get_PREF($myid) " WHERE user_id='$myid' AND pref_key='cardset'" ); if($r) { - if($r[0]=="germancards" && (time()-strtotime( "2009-12-31 23:59:59")<0) ) /* licence only valid until then */ + /* licence only valid until then */ + if($r[0]=="altenburg" && (time()-strtotime( "2009-12-31 23:59:59")<0) ) $PREF["cardset"]="altenburg"; else $PREF["cardset"]="english"; -- cgit v1.2.3-18-g5258