X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=5804c3341069bf5a06802880b2cf37a31a4c720d;hb=de09a35c9e55aceaf1c71052cbb40f44e4b3bbc7;hp=29900c7deb97201d5c15216dfb88317d117297c8;hpb=10dced7e75209f8158e4e1fa250bfbf91cfaa182;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 29900c7d..5804c334 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,24 +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); + $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"; }