From 14cdf8ad54e90d7b208b72cd0bfd568e9c22bc32 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Thu, 28 Jun 2007 22:49:06 +0200 Subject: [PATCH 1/1] CLEANUP: make the code look a bit nicer just a few small things --- index.php | 20 ++++++++++---------- output.php | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/index.php b/index.php index f5060a0..6eecd4b 100644 --- a/index.php +++ b/index.php @@ -289,9 +289,9 @@ else if(myisset("me")) echo " Gametype: $GT
\n"; echo "Rules:
\n"; - echo "10ofhearts : ".$r[2]."
\n"; - echo "schweinchen: ".$r[3]."
\n"; - echo "call: ".$r[4]."
\n"; + echo "10ofhearts : ".$RULES["dullen"] ."
\n"; + echo "schweinchen: ".$RULES["schweinchen"] ."
\n"; + echo "call: ".$RULES["call"] ."
\n"; echo "\n"; /* output extra division in case this game is part of a session */ @@ -341,7 +341,7 @@ else if(myisset("me")) case 'start': if( !myisset("in") ) { - check_want_to_play($me); + output_check_want_to_play($me); break; } else @@ -1796,11 +1796,11 @@ else if(myisset("me")) } else /* output default user page */ { - $time = DB_get_user_timestamp($uid); - $unixtime =strtotime($time); + $time = DB_get_user_timestamp($uid); + $unixtime = strtotime($time); - $offset = DB_get_user_timezone($uid); - $zone = return_timezone($offset); + $offset = DB_get_user_timezone($uid); + $zone = return_timezone($offset); date_default_timezone_set($zone); /* display links to settings */ @@ -1876,7 +1876,7 @@ else if(myisset("me")) } else { - echo "Sorry email and password don't match
"; + echo "Sorry email and password don't match. Please try again.
"; } }; output_footer(); @@ -1912,7 +1912,7 @@ else if(myisset("me")) if($r) echo " added you to the database"; else - echo " something went wrong"; + echo " something went wrong, couldn't add you to the database, please contact $ADMIN_NAME at $ADMIN_EMAIL."; } } /* default login page */ diff --git a/output.php b/output.php index 59cfeea..262ecd3 100644 --- a/output.php +++ b/output.php @@ -256,7 +256,7 @@ function output_check_for_sickness($me,$mycards) return; } -function check_want_to_play($me) +function output_check_want_to_play($me) { ?>
-- 2.25.1