X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=512b0412a6e5322a69806b21d501df2b4ba7a420;hb=95f98ed74ac6379b95e2ceb1eb0c9bbcd36fd4a9;hp=23318932abfc68376ad4f2f4d76043fb29b59f23;hpb=303eb17e9cdd9702eee9fdfcaee51e654a1da541;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 23318932..512b0412 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -9,9 +9,12 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -function page_footer($no_menu=false, $is_index=false, $hide_back_link=false) +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); include_once($path_to_root."/themes/".user_theme()."/renderer.php"); $rend = new renderer(); @@ -20,7 +23,7 @@ function page_footer($no_menu=false, $is_index=false, $hide_back_link=false) $edits = "editors = ".$Ajax->php2js($Editors).";"; $Ajax->addScript('editors', $edits); - echo "\n"; + + if ($sql_queries) { + div_start('footer_debug'); + echo "
$sql_queries
"; + div_end(); + } echo "\n"; } -?> \ No newline at end of file