aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/elgglib.php7
1 files changed, 5 insertions, 2 deletions
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;
}
/**