X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fmain.inc;h=2f0481334175c3e29b4104f86ca9ddaaabfb5bbb;hb=b9656a694227d0d22242fffbb343691b0db82030;hp=2180ec05793a0b3d0ab91823227eae9f36cea835;hpb=f6e1b649fc75750383b17c2ced6a5c1d6f19fe2e;p=fa-stable.git diff --git a/includes/main.inc b/includes/main.inc index 2180ec05..2f048133 100644 --- a/includes/main.inc +++ b/includes/main.inc @@ -13,13 +13,8 @@ include_once($path_to_root . "/admin/db/users_db.inc"); include_once($path_to_root . "/includes/ui/ui_view.inc"); + include_once($path_to_root . "/includes/ui/ui_controls.inc"); - function output_html($text) - { - global $before_box; - return in_ajax() ? fmt_errors() : ($before_box.fmt_errors().$text); - } - function page($title, $no_menu=false, $is_index=false, $onload="", $js="") { @@ -27,15 +22,11 @@ $hide_menu = $no_menu; - // intercept all output to destroy it in case of ajax call - ob_start('output_html'); - // colect all error msgs - set_error_handler('error_handler' /*, errtypes */); - include($path_to_root . "/includes/page/header.inc"); page_header($title, $no_menu, $is_index, $onload, $js); error_box(); + div_start('_page_body'); // whole page content for ajax reloading } function end_page($no_menu=false, $is_index=false) @@ -44,9 +35,9 @@ $hide_menu = $no_menu; + div_end(); // _page_body section include($path_to_root . "/includes/page/footer.inc"); - $Ajax->run(); page_footer($no_menu, $is_index); }