summaryrefslogtreecommitdiff
path: root/main/output.c
diff options
context:
space:
mode:
authorJames Moore <jmoore@php.net>2002-10-03 11:56:10 +0000
committerJames Moore <jmoore@php.net>2002-10-03 11:56:10 +0000
commitdf431074dee630572afc1b3eb9e31551a1298d07 (patch)
tree8ed09b03f19e44fe8216ff41032175bc87a165e4 /main/output.c
parent7b7c45dda2306fd7a1d2943be3151f5e9f5f2321 (diff)
downloadphp-git-df431074dee630572afc1b3eb9e31551a1298d07.tar.gz
Keep comments and code in sync.
Diffstat (limited to 'main/output.c')
-rw-r--r--main/output.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/main/output.c b/main/output.c
index bd252a4b0a..39ff8d8c19 100644
--- a/main/output.c
+++ b/main/output.c
@@ -591,9 +591,6 @@ static inline void php_ob_append(const char *text, uint text_length TSRMLS_DC)
memcpy(target, text, text_length);
target[text_length]=0;
- /* If implicit_flush is On, send contents to next buffer and return.
- Both PG() and OG() should be used since we should flush implicitly
- always when implicit_flush is enabled in php.ini */
if (OG(active_ob_buffer).chunk_size
&& OG(active_ob_buffer).text_length >= OG(active_ob_buffer).chunk_size) {
zval *output_handler = OG(active_ob_buffer).output_handler;