X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=e07f69838a5b900b126c5fc739b37eae7c9cae48;hb=4247980002820396888c3b6bcbd18617fbd196ef;hp=29900c7deb97201d5c15216dfb88317d117297c8;hpb=10dced7e75209f8158e4e1fa250bfbf91cfaa182;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 29900c7d..e07f6983 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -9,25 +9,30 @@ 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, $js_lib; + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax; - if (in_ajax()) - return;// just for speed up - - if (!$is_index && function_exists('hyperlink_back')) + 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); + $edits = "editors = ".$Ajax->php2js($Editors).";"; + $Ajax->addScript('editors', $edits); + + echo ""; + add_user_js_data(); echo "\n\n"; echo "\n"; }