From 9a5419548fe26bfc4285c051c80f84be3e0626ac Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Mon, 11 Sep 2000 20:36:59 +0000 Subject: [PATCH] Oof. Brainfart. Thanks to Martin Samesch for noticing. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@32512 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/session.xml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/functions/session.xml b/functions/session.xml index acacb128d4..1d856d0c6e 100644 --- a/functions/session.xml +++ b/functions/session.xml @@ -38,7 +38,7 @@ The track_vars and register_globals + linkend="ini.register-globals">register_globals configuration settings influence how the session variables get stored and restored. @@ -55,7 +55,7 @@ If track_vars is enabled and register_globals + linkend="ini.register-globals">register_globals is disabled, only members of the global associative array $HTTP_SESSION_VARS can be registered as session variables. The restored session variables will only be available in the array @@ -76,13 +76,15 @@ $HTTP_SESSION_VARS["count"]++; If register_globals + linkend="ini.register-globals">register_globals is enabled, then all global variables can be registered as session variables and the session variables will be restored to corresponding global variables. - Registering a variable with <link linkend="ini.track-vars"><literal>register_globals</literal></link> enabled + Registering a variable with <link + linkend="ini.register-globals"><literal>register_globals</literal></link> + enabled <?php @@ -96,7 +98,7 @@ $count++; If both track_vars and register_globals + linkend="ini.register-globals">register_globals are enabled, then the globals variables and the $HTTP_SESSION_VARS entries will reference the same value.