mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
- Fixed several problems with output buffering and HEAD requests (Zeev)
- Fixed HTTP Status code issue with ISAPI module (Zeev)
This commit is contained in:
parent
69fa5199bc
commit
276c876171
@ -2,6 +2,10 @@ PHP 4.0 CHANGE LOG ChangeLog
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
|
||||
?? ?? 1999, Version 4.0 Beta 3
|
||||
- Fixed several problems with output buffering and HEAD requests (Zeev)
|
||||
- Fixed HTTP Status code issue with ISAPI module (Zeev)
|
||||
- Fixed a problem that prevented $GLOBALS from working properly (Zeev, Zend
|
||||
library)
|
||||
- Fixed the a problem in the resource reference counting mechanism, that
|
||||
caused resources to be freed much later than they were supposed to (Zeev,
|
||||
Zend library)
|
||||
|
@ -732,7 +732,7 @@ void php_request_shutdown(void *dummy)
|
||||
SLS_FETCH();
|
||||
|
||||
sapi_send_headers();
|
||||
zend_end_ob_buffering(1);
|
||||
zend_end_ob_buffering(SG(request_info).headers_only?0:1);
|
||||
|
||||
php3_call_shutdown_functions();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user