diff options
| author | Sascha Schumann <sas@php.net> | 2002-10-03 15:19:55 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2002-10-03 15:19:55 +0000 |
| commit | e24247e63278c31d2e616bf46f53ac68b3592573 (patch) | |
| tree | a343a02fc538167e30d5db23e31e4830787eee07 | |
| parent | 16f54aaca8825a44869b10c35a06e12c026ac6bf (diff) | |
| download | php-git-e24247e63278c31d2e616bf46f53ac68b3592573.tar.gz | |
Remove ob_start()
| -rw-r--r-- | ext/session/tests/004.phpt | 2 | ||||
| -rw-r--r-- | ext/session/tests/005.phpt | 2 | ||||
| -rw-r--r-- | ext/session/tests/006.phpt | 1 | ||||
| -rw-r--r-- | ext/session/tests/007.phpt | 1 | ||||
| -rw-r--r-- | ext/session/tests/008.phpt | 1 |
5 files changed, 0 insertions, 7 deletions
diff --git a/ext/session/tests/004.phpt b/ext/session/tests/004.phpt index 7e8b0071d9..4645b366a7 100644 --- a/ext/session/tests/004.phpt +++ b/ext/session/tests/004.phpt @@ -50,8 +50,6 @@ class foo { function method() { $this->yes++; } } -ob_start(); - session_set_save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "destroy"), array($hnd, "gc")); session_id("abtest"); diff --git a/ext/session/tests/005.phpt b/ext/session/tests/005.phpt index a35338ee4e..3fe81b7115 100644 --- a/ext/session/tests/005.phpt +++ b/ext/session/tests/005.phpt @@ -52,8 +52,6 @@ class foo { function method() { $this->yes++; } } -ob_start(); - session_set_save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "destroy"), array($hnd, "gc")); session_id("abtest"); diff --git a/ext/session/tests/006.phpt b/ext/session/tests/006.phpt index 51381ab1fa..da50caba68 100644 --- a/ext/session/tests/006.phpt +++ b/ext/session/tests/006.phpt @@ -10,7 +10,6 @@ register_globals=1 <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); session_start(); diff --git a/ext/session/tests/007.phpt b/ext/session/tests/007.phpt index e915d39046..e0ad9ba4c6 100644 --- a/ext/session/tests/007.phpt +++ b/ext/session/tests/007.phpt @@ -11,7 +11,6 @@ session.bug_compat_42=1 <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); ### Phase 1 cleanup diff --git a/ext/session/tests/008.phpt b/ext/session/tests/008.phpt index a1c9a4a7a0..ec322799d2 100644 --- a/ext/session/tests/008.phpt +++ b/ext/session/tests/008.phpt @@ -12,7 +12,6 @@ session.bug_compat_warn=0 <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); ### Phase 1 cleanup |
