From b045ad02a109f508cda8971667f75347ff63cfa1 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 10 Jun 2011 22:13:08 +0000 Subject: [PATCH] - Fixed output stuff --- http_api.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http_api.c b/http_api.c index 2c31d10..06cc43d 100644 --- a/http_api.c +++ b/http_api.c @@ -255,7 +255,8 @@ STATUS _http_exit_ex(int status, char *header, char *body, zend_bool send_header if ( #if defined(PHP_VERSION_ID) && (PHP_VERSION_ID >= 50399) - OG(active) && (OG(active)->flags & PHP_OUTPUT_HANDLER_FLUSHABLE) && + (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_ACTIVE) && + (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_HANDLER_FLUSHABLE) && #else !OG(ob_lock) && #endif -- 2.30.2