From: [EMAIL PROTECTED]
Operating system: Win98
PHP version: 4.0.5
PHP Bug Type: Output Control
Bug description: Output buffering crashs PHP when mail function is invoked
This will crash PHP:
ob_start("ob_gzhandler");
echo "something";
mail (.....);
but this will not:
ob_start("ob_gzhandler");
echo "something";
ob_end_flush();
mail (.....);
Note: I don't have any mail server installed. The mail function should report an
error, but PHP crashes instead.
--
Edit Bug report at: http://bugs.php.net/?id=10903&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]