diff options
author | Zeev Suraski <zeev@php.net> | 2000-09-02 18:03:58 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-09-02 18:03:58 +0000 |
commit | cf8e389799ff213d6eadfee8839b1aaa5ebe32f8 (patch) | |
tree | ac8d9bbfdabdc0fadb62d6e44973f6604a047cc5 /main/main.c | |
parent | 77b55ad07dc17e812f158e2183d44fb32f9e4b7d (diff) | |
download | php-git-cf8e389799ff213d6eadfee8839b1aaa5ebe32f8.tar.gz |
@- Added support for an optional output handler function for output
@ buffering. This enables transparent rendering of XML through XSL,
@ transparent compression, etc. (Zeev)
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 7b10e2f333..a3887075f1 100644 --- a/main/main.c +++ b/main/main.c @@ -607,7 +607,7 @@ int php_request_startup(CLS_D ELS_DC PLS_DC SLS_DC) } if (PG(output_buffering)) { - php_start_ob_buffer(); + php_start_ob_buffer(NULL); } else if (PG(implicit_flush)) { php_start_implicit_flush(); } |