diff options
author | Joey Smith <joey@php.net> | 2001-07-28 01:31:52 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2001-07-28 01:31:52 +0000 |
commit | c5cbe8b3cb0778cae73a75d5d2c76d93b216501d (patch) | |
tree | a245ca1ff1a505cbdf48e40593ac261d7c9e602d | |
parent | 28b0a3167b36eca7160466c048c865639e07711f (diff) | |
download | php-git-c5cbe8b3cb0778cae73a75d5d2c76d93b216501d.tar.gz |
nesting_level is now ob_nesting_level in main/php_output.h
-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 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(); } |