From de3748e1090cb7a8e39873682a92ab27eebcae3a Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Fri, 18 Jul 2003 06:27:59 +0000 Subject: [PATCH] Added docs from php.ini for session.bug_compat_42 and session.bug_compat_warn as per doc bug #23465. This doesn't yet close the bug as this strange issue needs additional documentation, somewhere. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@135351 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/ini.xml | 48 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/reference/session/ini.xml b/reference/session/ini.xml index c64d9e10a0..a40bbcd3af 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -110,6 +110,16 @@ "0" PHP_INI_SYSTEM | PHP_INI_PERDIR + + session.bug_compat_42 + "1" + PHP_INI_ALL + + + session.bug_compat_warn + "1" + PHP_INI_ALL + url_rewriter.tags "a=href,area=href,frame=src,input=src,form=fakeentry" @@ -488,6 +498,42 @@ + + + + session.bug_compat_42 + boolean + + + + PHP versions 4.2.0 and lower have an undocumented feature/bug that + allows you to to initialize a session variable in the global scope, + albeit register_globals + is disabled. PHP 4.3.0 and later will warn you, if this feature is + used, and if + session.bug_compat_warn is also enabled. + + + + + + + session.bug_compat_warn + boolean + + + + PHP versions 4.2.0 and lower have an undocumented feature/bug that + allows you to to initialize a session variable in the global scope, + albeit register_globals + is disabled. PHP 4.3.0 and later will warn you, if this feature is + used by enabling both + session.bug_compat_42 + and + session.bug_compat_warn. + + +