sas Thu Oct 3 11:52:36 2002 EDT Added files: /php4/ext/session/tests 013.phpt Log: There should not be any warning with regard to redefining SID
Index: php4/ext/session/tests/013.phpt +++ php4/ext/session/tests/013.phpt --TEST-- There should not be any warning with regard to redefining SID --SKIPIF-- <?php include('skipif.inc'); ?> --INI-- session.use_cookies=0 session.cache_limiter= register_globals=1 session.bug_compat_42=1 session.bug_compat_warn=0 --FILE-- <?php error_reporting(E_ALL); session_id("abtest"); session_start(); session_destroy(); session_id("abtest2"); session_start(); session_destroy(); print "I live\n"; ?> --EXPECT-- I live -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php