From: Joey Smith Date: Sat, 28 Jul 2001 01:31:52 +0000 (+0000) Subject: nesting_level is now ob_nesting_level in main/php_output.h X-Git-Tag: PRE_ENGINE2_SPLIT~246 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5cbe8b3cb0778cae73a75d5d2c76d93b216501d;p=php nesting_level is now ob_nesting_level in main/php_output.h --- diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c index 0a91262011..ee05e0168f 100644 --- a/ext/sablot/sablot.c +++ b/ext/sablot/sablot.c @@ -310,7 +310,7 @@ PHP_FUNCTION(xslt_output_endtransform) * Make sure that we don't have more than one output buffer going on * at the same time. */ - if (OG(nesting_level) == 0) { + if (OG(ob_nesting_level) == 0) { RETURN_NULL(); }