X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fpage%2Ffooter.inc;h=90c951c19bb46e60327b4bf3c8ac5831056c93b1;hb=05ba2d82d4230a8ea991920515cdc2377fcacfd0;hp=0ba9b52a1f56f18bbe0bc39890228f42c0dfd4a9;hpb=ce2a1cae35df4f60c3b993d79cb9eb65cb2cb82e;p=fa-stable.git diff --git a/includes/page/footer.inc b/includes/page/footer.inc index 0ba9b52a..90c951c1 100644 --- a/includes/page/footer.inc +++ b/includes/page/footer.inc @@ -11,19 +11,21 @@ ***********************************************************************/ function page_footer($no_menu=false, $is_index=false) { - global $path_to_root, $js_lib, $Validate; - - 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(); @@ -31,7 +33,6 @@ function page_footer($no_menu=false, $is_index=false) foreach($js_lib as $text) echo $text; - echo "\n-->\n"; echo "\n"; }