X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=8ca5bcef0203567189e49c329e4a02d0c8012e9d;hb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;hp=a105d75503e87c71d5736e9a713f0cca410e7dcc;hpb=8864b1ec0fd3321e510511ef22614bc36845540e;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index a105d755..8ca5bcef 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,26 +11,36 @@ ***********************************************************************/ function page_footer($no_menu=false, $is_index=false) { - global $path_to_root, $js_lib; + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries; - if (in_ajax()) - return;// just for speed up + $page_header_args = func_get_args(); + hook_invoke_all('pre_footer', $page_header_args); - if (!$is_index && function_exists('hyperlink_back')) - hyperlink_back(); include_once($path_to_root."/themes/".user_theme()."/renderer.php"); $rend = new renderer(); $rend->menu_footer($no_menu, $is_index); - echo ""; + + $edits = "editors = ".$Ajax->php2js($Editors).";"; + $Ajax->addScript('editors', $edits); + + echo ""; add_user_js_data(); echo "\n\n"; + + if ($sql_queries) { + div_start('footer_debug'); + echo "
$sql_queries
"; + div_end(); + } echo "\n"; } -?> \ No newline at end of file