preload env required files (css,js)
This commit is contained in:
parent
d4e837b7e6
commit
29ac13815a
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue