summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2002-10-24 10:40:48 +0000
committerSascha Schumann <sas@php.net>2002-10-24 10:40:48 +0000
commite60c601bd1eece53b8322e2a46788fc4bda49a23 (patch)
tree879799d57dc92d699851449ea3ec6e6cb8b73907
parentb2a80311443ee1a4afeb50321bf18c6c22971e4e (diff)
downloadphp-git-e60c601bd1eece53b8322e2a46788fc4bda49a23.tar.gz
improved warning message
# this should really link to an external page which explains the issue deeply
-rw-r--r--ext/session/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index 08e717058b..d06c0d29a9 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -663,7 +663,7 @@ static void php_session_save_current_state(TSRMLS_D)
}
if (do_warn && PS(bug_compat_warn)) {
- php_error(E_WARNING, "Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn.");
+ php_error(E_WARNING, "Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively.");
}
}