From f2e9012d54dfc2766daaccbfec9080d42d318e1c Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 3 Mar 2009 18:32:07 +0000 Subject: Echoing the large output buffer in chunks git-svn-id: https://code.elgg.org/elgg/trunk@3048 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/elgglib.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'engine/lib/elgglib.php') diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index e106e8bd8..7dc0e24a8 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -1066,14 +1066,17 @@ function page_draw($title, $body, $sidebar = "") { // Draw the page - echo elgg_view('pageshells/pageshell', array( + $output = elgg_view('pageshells/pageshell', array( 'title' => $title, 'body' => $body, 'sidebar' => $sidebar, 'sysmessages' => system_messages(null,"") ) ); - + $split_output = str_split($output, 8192); + + foreach($split_output as $chunk) + echo $chunk; } /** -- cgit v1.2.3