diff options
author | Sascha Schumann <sas@php.net> | 2002-10-03 06:33:19 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-10-03 06:33:19 +0000 |
commit | afb1458910d81955f3c6b524a2ab2f7185b60a86 (patch) | |
tree | 2dadd614e1fda0aaf9d4010013b7b8606fb6ec47 /ext/session/tests | |
parent | 356ea7ffbd8252331a03bd1d47b5b5477b1a77de (diff) | |
download | php-git-afb1458910d81955f3c6b524a2ab2f7185b60a86.tar.gz |
session_destroy resets the sid, so we need to set it again here
Diffstat (limited to 'ext/session/tests')
-rw-r--r-- | ext/session/tests/007.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/tests/007.phpt b/ext/session/tests/007.phpt index bc1fef1135..40a7317530 100644 --- a/ext/session/tests/007.phpt +++ b/ext/session/tests/007.phpt @@ -17,6 +17,7 @@ session_start(); session_destroy(); ### Phase 2 $HTTP_SESSION_VARS["c"] does not contain any value +session_id("abtest"); session_register("c"); unset($c); $c = 3.14; |