preload env required files (css,js)

This commit is contained in:
fbsanchez 2020-09-28 15:56:17 +02:00
parent d4e837b7e6
commit 29ac13815a

View File

@ -53,6 +53,8 @@ class View
{ {
global $config; global $config;
ob_start('ui_process_page_head');
if (is_array($data) === true) { if (is_array($data) === true) {
extract($data); extract($data);
} }
@ -67,6 +69,12 @@ class View
} else { } else {
ui_print_error_message(__('View %s not found', $page), true); ui_print_error_message(__('View %s not found', $page), true);
} }
while (@ob_end_flush()) {
// Dumping...
continue;
}
} }