diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2007-06-06 00:00:28 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2007-06-06 00:00:28 +0000 |
| commit | c38ad55e8e3c6fe3fc858bf4d10e768f68bdbd5b (patch) | |
| tree | 02d9b0b7049a71b469710998c0bce6cd53b21f80 /ext/session | |
| parent | c084d1c829da3fb2489984e858b146f2338fa3ab (diff) | |
| download | php-git-c38ad55e8e3c6fe3fc858bf4d10e768f68bdbd5b.tar.gz | |
Fixed bug #41600 (url rewriter tags doesn't work with namespaced tags).
Diffstat (limited to 'ext/session')
| -rw-r--r-- | ext/session/tests/bug41600.phpt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/session/tests/bug41600.phpt b/ext/session/tests/bug41600.phpt new file mode 100644 index 0000000000..ba04fd9d99 --- /dev/null +++ b/ext/session/tests/bug41600.phpt @@ -0,0 +1,26 @@ +--TEST-- +Bug #41600 (url rewriter tags doesn't work with namespaced tags) +--SKIPIF-- +<?php include('skipif.inc'); ?> +--INI-- +session.use_cookies=0 +session.cache_limiter= +session.use_trans_sid=1 +arg_separator.output=& +session.name=PHPSESSID +session.serialize_handler=php +session.save_handler=files +--FILE-- +<?php + +error_reporting(E_ALL); + +session_id("abtest"); +session_start(); +?> +<a href="link.php?a=b"> +<?php +session_destroy(); +?> +--EXPECT-- +<a href="link.php?a=b&PHPSESSID=abtest"> |
