X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=68f76f35ef0c0696424b66d4cd2867f9928dee36;hb=175a48c5bd73abe16e77fa2cb48ba522f00d1501;hp=e07f69838a5b900b126c5fc739b37eae7c9cae48;hpb=9478a0cdeaf9201d2f3947e11e58d90354050025;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index e07f6983..68f76f35 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,10 +11,8 @@ ***********************************************************************/ function page_footer($no_menu=false, $is_index=false, $hide_back_link=false) { - global $path_to_root, $js_lib, $Validate, $Editors, $Ajax; + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries; - if (!$is_index && !$hide_back_link && 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 +32,12 @@ function page_footer($no_menu=false, $is_index=false, $hide_back_link=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"; }