X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=e3d4c261045a26918a3f341e9b1ac2d6fe03872e;hb=85f86f5985c98cb9da31d583d0ab74280cd8b3a5;hp=90c951c19bb46e60327b4bf3c8ac5831056c93b1;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 90c951c1..e3d4c261 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,10 +11,11 @@ ***********************************************************************/ 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); @@ -34,6 +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"; }