X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=512b0412a6e5322a69806b21d501df2b4ba7a420;hb=a52a9148cfb7b2f2a048acb5726d98e6786f2b8d;hp=7256dfe1aa41cb4910993cc2dc22b03c9b703d8f;hpb=cf7be1f00c6abe59755286e0c3108d9d3c0356da;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 7256dfe1..512b0412 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,20 +11,21 @@ ***********************************************************************/ function page_footer($no_menu=false, $is_index=false) { - global $path_to_root, $js_lib, $Validate, $Editors, $Ajax; + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries; + + $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 = ".JsHttpRequest::php2js($Editors).";"; + $edits = "editors = ".$Ajax->php2js($Editors).";"; $Ajax->addScript('editors', $edits); - echo ""; @@ -34,7 +35,12 @@ function page_footer($no_menu=false, $is_index=false) foreach($js_lib as $text) echo $text; echo "\n-->\n"; + + if ($sql_queries) { + div_start('footer_debug'); + echo "
$sql_queries
"; + div_end(); + } echo "\n"; } -?> \ No newline at end of file