Bug 4817: g/l account inquiry can timeout due to slow sql. @Braath Waate.
[fa-stable.git] / includes / page / footer.inc
index 0ba9b52a1f56f18bbe0bc39890228f42c0dfd4a9..512b0412a6e5322a69806b21d501df2b4ba7a420 100644 (file)
 ***********************************************************************/
 function page_footer($no_menu=false, $is_index=false)
 {
-       global $path_to_root, $js_lib, $Validate;
+       global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries;
 
-       if (in_ajax())
-               return;// just for speed up
+       $page_header_args = func_get_args();
+       hook_invoke_all('pre_footer', $page_header_args);
 
-       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 "<script>
+
+       $edits = "editors = ".$Ajax->php2js($Editors).";";
+       $Ajax->addScript('editors', $edits);
+
+       echo "<script type='text/javascript'>
                _focus = '" . get_post('_focus') . "';
-               _validate = " . JsHttpRequest::php2js($Validate).";
+               _validate = " . $Ajax->php2js($Validate).";
+               var $edits
        </script>";
 
        add_user_js_data();
@@ -31,9 +34,13 @@ function page_footer($no_menu=false, $is_index=false)
 
        foreach($js_lib as $text)
                echo $text;
-
        echo "\n--></script>\n";
+
+       if ($sql_queries) {
+               div_start('footer_debug');
+                echo "<div class='note_msg'>$sql_queries</div>";
+               div_end();
+       }
     echo "</body></html>\n";
 }
 
-?>
\ No newline at end of file