From 29ac13815a7506af9d0a95bebd35ec749dad8dd6 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 28 Sep 2020 15:56:17 +0200 Subject: [PATCH] preload env required files (css,js) --- pandora_console/include/lib/View.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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; + } + }