Date: 08/30/99
- Next message: web <email protected>: "[PHP-DEV] Bug #2197: The GD library nop longer supports gifs"
- Previous message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #2195 Updated: Call to undefined function: dbmopen()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: jarceri <email protected>
Operating system: BSD/OS 4.01
PHP version: 4.0 Beta 2
PHP Bug Type: Other
Bug description: Browser Crash from redundant session variable initializations
<?php
$s_userIDKey = $userIDKey;
session_start();
if(session_is_registered("userIDKey"))
{
session_unregister("userIDKey");
};
session_register("s_userIDKey");
$s_userIDKey = $userIDKey;
$s_siteKey = $siteKey;
if(session_is_registered("siteKey"))
{
session_unregister("siteKey");
}
session_register("s_siteKey");
$s_siteKey = $siteKey;
?>
After so many times this will crash the browser
-- 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>
- Next message: web <email protected>: "[PHP-DEV] Bug #2197: The GD library nop longer supports gifs"
- Previous message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #2195 Updated: Call to undefined function: dbmopen()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

