diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2010-03-23 11:51:38 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2010-03-23 11:51:38 +0000 |
commit | 8a9364080b181af6aea9727b1786bc74209a73da (patch) | |
tree | bf76affcff1fe4d12c4a32180e83721e5cc347f5 | |
parent | ec3a46e194bcf1844354ec9f524500921e984e09 (diff) | |
download | php-git-8a9364080b181af6aea9727b1786bc74209a73da.tar.gz |
Added test for bug #51338
-rw-r--r-- | ext/session/tests/bug51338.phpt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/session/tests/bug51338.phpt b/ext/session/tests/bug51338.phpt new file mode 100644 index 0000000000..d806c0bf3f --- /dev/null +++ b/ext/session/tests/bug51338.phpt @@ -0,0 +1,15 @@ +--TEST-- +Bug #51338 (URL-Rewriter should not get enabled if use_only_cookies is set to 1) +--SKIPIF-- +<?php include('skipif.inc'); ?> +--INI-- +session.use_only_cookies=1 +session.use_trans_sid=1 +--FILE-- +<?php +session_start(); +print_r(ob_list_handlers()); +--EXPECT-- +Array +( +) |