From 73d6cbe80185537f3845952d00e351a4a1b26b03 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Sat, 7 Aug 2010 15:57:40 +0200 Subject: [PATCH] Fix notices with certain output buffer configurations (Valentin.Vidic@CARNet.hr, Bug #7851). --- imp/docs/CHANGES | 2 ++ imp/lib/Dimp.php | 1 + kronolith/lib/Kronolith.php | 1 + 3 files changed, 4 insertions(+) diff --git a/imp/docs/CHANGES b/imp/docs/CHANGES index 93d4fd0df..d94895e57 100644 --- a/imp/docs/CHANGES +++ b/imp/docs/CHANGES @@ -2458,6 +2458,8 @@ OLD DIMP CHANGELOG v1.1.5-cvs ---------- +[jan] Fix notices with certain output buffer configurations + (Valentin.Vidic@CARNet.hr, Bug #7851). [mms] Turn DNS prefetching off when displaying untrusted message content (Ticket #8836). diff --git a/imp/lib/Dimp.php b/imp/lib/Dimp.php index 8210e582d..3772e4e7c 100644 --- a/imp/lib/Dimp.php +++ b/imp/lib/Dimp.php @@ -75,6 +75,7 @@ class IMP_Dimp // Send what we have currently output so the browser can start // loading CSS/JS. See: // http://developer.yahoo.com/performance/rules.html#flush + ob_flush(); flush(); } diff --git a/kronolith/lib/Kronolith.php b/kronolith/lib/Kronolith.php index 6f9a45d2d..e4218ea1a 100644 --- a/kronolith/lib/Kronolith.php +++ b/kronolith/lib/Kronolith.php @@ -97,6 +97,7 @@ class Kronolith // Send what we have currently output so the browser can start // loading CSS/JS. See: // http://developer.yahoo.com/performance/rules.html#flush + ob_flush(); flush(); } -- 2.11.0