[PHP-DEV] Bug #9972 Updated: after session_destroy & session_start variable still has a value From: sniper <email protected>
Date: 06/18/01

ID: 9972
Updated by: sniper
Reported By: sstraka <email protected>
Old-Status: Feedback
Status: Bogus
Bug Type: *Session related
Operating system:
PHP Version: 4.0.4pl1
Assigned To:
Comments:

User feedback:

Please ignore this "bug", it was a bogus.

S. Straka

Previous Comments:
---------------------------------------------------------------------------

[2001-06-14 23:31:35] sniper <email protected>
Please include complete but short example script into this bug report.

---------------------------------------------------------------------------

[2001-03-24 14:16:56] sstraka <email protected>
I've used session_register("sErr") to register session variable. then it's used in following function:

function kBan_error() {
    global $HTTP_SESSION_VARS;
    if($HTTP_SESSION_VARS['sErr']):
        echo "<span class="error">".$HTTP_SESSION_VARS['sErr']."</span>";
    endif;
    $HTTP_SESSION_VARS['sErr'] = "";
}

on another site the $HTTP_SESSION_VARS['sErr'] is empty. after calling session_destroy() is the variable empty again. but after calling session_start() in the same browser window, the variable sets to latest value that it's been filled with. calling the function kBan_error() twice in a row with defined variable $HTTP_SESSION_VARS['sErr'] causes only one appearance of the error message.

---------------------------------------------------------------------------

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9972&edit=2

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>