zeev,
your patch
http://cvs.php.net/diff.php/php4/ext/session/session.c?r1=1.277&r2=1.278&ty=u
broke the session module:
testcase (run multiple times using php-cgi from the command-line)
<?php
session_id("thies");
session_start();
if (! session_is_registered("hallo")) {
$hallo = "hi ";
session_register('hallo');
} else {
$hallo = &$_SESSION[ 'hallo' ];
}
echo "$hallo\n";
$hallo .= '!';
?>
after your patch the changed value of $hallo is no longer remembered.
hmm, as i don't know wich "crash bug" your patch fixes i
don't want to simply revert it - could you give me some
insights?
re,
tc
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php