diff options
author | Antony Dovgal <tony2001@php.net> | 2006-08-11 10:35:04 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-08-11 10:35:04 +0000 |
commit | 85865584fd7548bcad342cc6ea9139bb0fbb2273 (patch) | |
tree | c99bd5c0ec092284ec8c46d8a70240c1e80abe15 | |
parent | c1e5091166f891c9b5214e911991b1920c5ce2fe (diff) | |
download | php-git-85865584fd7548bcad342cc6ea9139bb0fbb2273.tar.gz |
fix test
-rw-r--r-- | ext/session/tests/bug36459.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/session/tests/bug36459.phpt b/ext/session/tests/bug36459.phpt index 30c94f81d9..5d74b3bc4b 100644 --- a/ext/session/tests/bug36459.phpt +++ b/ext/session/tests/bug36459.phpt @@ -2,14 +2,14 @@ bug #31454 (Incorrect adding PHPSESSID to links, which contains \r\n) --SKIPIF-- <?php include('skipif.inc'); ?> +--INI-- +session.use_trans_sid=1 +session.use_cookies=0 +session.name=sid --FILE-- <?php error_reporting(E_ALL); -ini_set('session.use_trans_sid', 1); -ini_set('session.use_cookies', 0); -ini_set('session.name', 'sid'); - session_start(); # Do not remove \r from this tests, they are essential! |