diff --git a/pandora_console/include/lib/View.php b/pandora_console/include/lib/View.php index becb9ba063..6376edfb38 100644 --- a/pandora_console/include/lib/View.php +++ b/pandora_console/include/lib/View.php @@ -53,6 +53,8 @@ class View { global $config; + ob_start('ui_process_page_head'); + if (is_array($data) === true) { extract($data); } @@ -67,6 +69,12 @@ class View } else { ui_print_error_message(__('View %s not found', $page), true); } + + while (@ob_end_flush()) { + // Dumping... + continue; + } + }