diff options
author | Sterling Hughes <sterling@php.net> | 2000-09-03 14:03:51 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-09-03 14:03:51 +0000 |
commit | 7089540ec700365efadd934a286f48bf0dc3b52d (patch) | |
tree | 499c9ff3582428cb1defd4bb7fc4dc72c2ea2676 | |
parent | ce71143fd09e0275abf80f43f9a76a62b2d4d3d5 (diff) | |
download | php-git-7089540ec700365efadd934a286f48bf0dc3b52d.tar.gz |
Just when you got something working they decide to change the API
on you :-).
-rw-r--r-- | ext/sablot/sablot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c index 1499777b2a..0bde0bf6db 100644 --- a/ext/sablot/sablot.c +++ b/ext/sablot/sablot.c @@ -164,7 +164,7 @@ PHP_FUNCTION(xslt_output_begintransform) S_FREE(SABLOTG(output_transform_file)); SABLOTG(output_transform_file) = estrndup(Z_STRVAL_PP(file), Z_STRLEN_PP(file)); - php_start_ob_buffer(); + php_start_ob_buffer(NULL); } /* }}} */ |