From 353439a3541670fb3ff0a5ac48a8a9e11255311a Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 11 Jan 2003 14:01:39 +0000 Subject: [PATCH] Slight cleanup --- lib/session-test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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

"; } -- 2.39.5