sas Thu Oct 3 11:19:56 2002 EDT Modified files: /php4/ext/session/tests 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt Log: Remove ob_start() Index: php4/ext/session/tests/004.phpt diff -u php4/ext/session/tests/004.phpt:1.10 php4/ext/session/tests/004.phpt:1.11 --- php4/ext/session/tests/004.phpt:1.10 Thu Oct 3 11:11:01 2002 +++ php4/ext/session/tests/004.phpt Thu Oct 3 11:19:55 2002 @@ -50,8 +50,6 @@ 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"); Index: php4/ext/session/tests/005.phpt diff -u php4/ext/session/tests/005.phpt:1.8 php4/ext/session/tests/005.phpt:1.9 --- php4/ext/session/tests/005.phpt:1.8 Thu Oct 3 11:11:01 2002 +++ php4/ext/session/tests/005.phpt Thu Oct 3 11:19:55 2002 @@ -52,8 +52,6 @@ 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"); Index: php4/ext/session/tests/006.phpt diff -u php4/ext/session/tests/006.phpt:1.8 php4/ext/session/tests/006.phpt:1.9 --- php4/ext/session/tests/006.phpt:1.8 Thu Oct 3 11:11:01 2002 +++ php4/ext/session/tests/006.phpt Thu Oct 3 11:19:55 2002 @@ -10,7 +10,6 @@ <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); session_start(); Index: php4/ext/session/tests/007.phpt diff -u php4/ext/session/tests/007.phpt:1.4 php4/ext/session/tests/007.phpt:1.5 --- php4/ext/session/tests/007.phpt:1.4 Thu Oct 3 11:11:01 2002 +++ php4/ext/session/tests/007.phpt Thu Oct 3 11:19:55 2002 @@ -11,7 +11,6 @@ <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); ### Phase 1 cleanup Index: php4/ext/session/tests/008.phpt diff -u php4/ext/session/tests/008.phpt:1.4 php4/ext/session/tests/008.phpt:1.5 --- php4/ext/session/tests/008.phpt:1.4 Thu Oct 3 11:11:01 2002 +++ php4/ext/session/tests/008.phpt Thu Oct 3 11:19:55 2002 @@ -12,7 +12,6 @@ <?php error_reporting(E_ALL & ~E_NOTICE); -ob_start(); session_id("abtest"); ### Phase 1 cleanup
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php