X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=23318932abfc68376ad4f2f4d76043fb29b59f23;hb=4235547f197afc92d317f3137419421d8660c168;hp=2ce07a2947590d17668d0cffe02fa40e9141cabb;hpb=d567a10b7925c8bb97c734e213d6651a979af29d;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 2ce07a29..23318932 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -9,18 +9,29 @@ 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; - 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); + + $edits = "editors = ".$Ajax->php2js($Editors).";"; + $Ajax->addScript('editors', $edits); + + echo ""; + + add_user_js_data(); + echo "\n\n"; echo "\n"; }