summaryrefslogtreecommitdiff
path: root/ext/sablot/sablot.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sablot/sablot.c')
-rw-r--r--ext/sablot/sablot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c
index f3b3f8520d..6547f9050e 100644
--- a/ext/sablot/sablot.c
+++ b/ext/sablot/sablot.c
@@ -282,7 +282,7 @@ PHP_FUNCTION(xslt_output_begintransform)
* Start output buffering, NULL signifies that no "user-space" output function
* will be used. The 0 disables chunking
*/
- php_start_ob_buffer(NULL, 0);
+ php_start_ob_buffer(NULL, 0 TSRMLS_CC);
}
/* }}} */
@@ -345,7 +345,7 @@ PHP_FUNCTION(xslt_output_endtransform)
* current output buffer (so we don't send data twice)
*/
if (tRes)
- php_end_ob_buffer(0, 0);
+ php_end_ob_buffer(0, 0 TSRMLS_CC);
PUTS(tRes);
@@ -360,7 +360,7 @@ PHP_FUNCTION(xslt_output_endtransform)
if (tRes)
SablotFree(tRes);
else
- php_end_ob_buffer(1, 0);
+ php_end_ob_buffer(1, 0 TSRMLS_CC);
}
/* }}} */