X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=68f76f35ef0c0696424b66d4cd2867f9928dee36;hb=e0c09e32300e01d638bf4507cfe5c06f6c7386f3;hp=61c731186c39b3e407ec06a7ffbb106fcf7449b4;hpb=061f4eff6493a6cca071338156225401ae849d72;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 61c73118..68f76f35 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -9,19 +9,35 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -function page_footer($no_menu=false, $is_index=false) +function page_footer($no_menu=false, $is_index=false, $hide_back_link=false) { - global $path_to_root; + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries; - if (in_ajax()) - return;// just for speed up - - 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); - echo ""; + + $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"; }