From 9239ba22c382383cd258ad3f36b2bc0dc99664b2 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Thu, 8 May 2008 20:40:43 -0700 Subject: CLEANUP: reorganized the 'init' phase of a game moved some code around, so that we test the result of the init phase in the init case statement. Made things a bit clearer and removed one page reload by doing this. Signed-off-by: Arun Persaud --- include/db.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'include/db.php') diff --git a/include/db.php b/include/db.php index 8c04828..a9bdffd 100644 --- a/include/db.php +++ b/include/db.php @@ -668,8 +668,6 @@ function DB_set_party_by_hash($hash,$party) function DB_get_PREF($myid) { - global $PREF; - /* Cardset */ $r = DB_query_array("SELECT value from User_Prefs". " WHERE user_id='$myid' AND pref_key='cardset'" ); @@ -696,7 +694,20 @@ function DB_get_PREF($myid) else $PREF["email"]="emailnonaddict"; - return; + return $PREF; +} + +function DB_get_RULES($gameid) +{ + $r = DB_query_array("SELECT * FROM Rulesets". + " LEFT JOIN Game ON Game.ruleset=Rulesets.id ". + " WHERE Game.id='$gameid'" ); + + $RULES["dullen"] = $r[2]; + $RULES["schweinchen"] = $r[3]; + $RULES["call"] = $r[4]; + + return $RULES; } function DB_get_email_pref_by_hash($hash) -- cgit v1.2.3-18-g5258