summaryrefslogtreecommitdiff
path: root/ext/session/tests/bug26862.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/session/tests/bug26862.phpt')
-rw-r--r--ext/session/tests/bug26862.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/session/tests/bug26862.phpt b/ext/session/tests/bug26862.phpt
deleted file mode 100644
index 44e7418cd0..0000000000
--- a/ext/session/tests/bug26862.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #26862 (ob_flush() before output_reset_rewrite_vars() results in data loss)
---SKIPIF--
-<?php include('skipif.inc'); ?>
---INI--
-register_globals=0
-html_errors=0
-session.use_trans_sid=0
-session.save_handler=files
---FILE--
-<?php
-session_start();
-output_add_rewrite_var('var', 'value');
-
-echo '<a href="file.php">link</a>';
-
-ob_flush();
-
-output_reset_rewrite_vars();
-echo '<a href="file.php">link</a>';
-?>
---EXPECT--
-<a href="file.php?var=value">link</a><a href="file.php">link</a>