]> git.mjollnir.org Git - moodle.git/commitdiff
Slight cleanup
authormoodler <moodler>
Sat, 11 Jan 2003 14:01:39 +0000 (14:01 +0000)
committermoodler <moodler>
Sat, 11 Jan 2003 14:01:39 +0000 (14:01 +0000)
lib/session-test.php

index 6ef403e08a58ae6a15c0e993607514731a754997..23b70bc8fd3e82d07c36fa19836aeda4de5de481 100644 (file)
@@ -13,7 +13,7 @@ if (!isset($_SESSION["test"])) {   // First time you call it.
     $_SESSION["test"] = "welcome back!";
 
 } else {                           // Subsequent times you call it
-    echo "<P>Session found (".$_SESSION["test"].")!";
+    echo "<P>Session found - ".$_SESSION["test"];
     echo "<P>Sessions are working correctly</P>";
 }