From: Arun Persaud Date: Fri, 14 Dec 2007 11:07:39 +0000 (+0100) Subject: LAYOUT: made login/logout message in stats.php look nicer X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=3db5eb27624bf78817a69da847af22f3986f20fe LAYOUT: made login/logout message in stats.php look nicer title says it all ;) --- diff --git a/stats.php b/stats.php index 21b67ed..5bbca26 100644 --- a/stats.php +++ b/stats.php @@ -28,7 +28,8 @@ if(myisset("logout")) session_unset(); session_destroy(); $_SESSION = array(); - echo "you are now logged out!"; + echo "
You are now logged out!
\n". + "(This will take you back to the home-page)
"; } /* user status page */ else if( isset($_SESSION["name"]) ) @@ -233,7 +234,8 @@ else if( isset($_SESSION["name"]) ) else { /* send them back to the login page */ - echo "

Please log in

"; + echo "
You need to log in!
\n". + "(This will take you back to the login-page)
"; } output_footer();