From: moodler Date: Sat, 11 Jan 2003 14:01:39 +0000 (+0000) Subject: Slight cleanup X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=353439a3541670fb3ff0a5ac48a8a9e11255311a;p=moodle.git Slight cleanup --- diff --git a/lib/session-test.php b/lib/session-test.php index 6ef403e08a..23b70bc8fd 100644 --- a/lib/session-test.php +++ b/lib/session-test.php @@ -13,7 +13,7 @@ if (!isset($_SESSION["test"])) { // First time you call it. $_SESSION["test"] = "welcome back!"; } else { // Subsequent times you call it - echo "

Session found (".$_SESSION["test"].")!"; + echo "

Session found - ".$_SESSION["test"]; echo "

Sessions are working correctly

"; }