X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=90c951c19bb46e60327b4bf3c8ac5831056c93b1;hb=d497aeb2d93ed1c705007fa6ff84a4c470f7f538;hp=7528b7bfd76b3131e6589ad5c10736722604728c;hpb=59233fde6a6ea38e17c1ce5b089cb0b798a98e2d;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 7528b7bf..90c951c1 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -1,17 +1,39 @@ . +***********************************************************************/ function page_footer($no_menu=false, $is_index=false) { - global $path_to_root; - - if (in_ajax()) - return;// just for speed up + global $path_to_root, $js_lib, $Validate, $Editors, $Ajax; 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"; }