Added system tale for transaction edition entry points.
[fa-stable.git] / includes / page / footer.inc
index da53a925c1e93e63cdafa7b45aa078d10142f5d0..68f76f35ef0c0696424b66d4cd2867f9928dee36 100644 (file)
@@ -9,23 +9,21 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-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, $Validate, $Editors;
+       global $path_to_root, $js_lib, $Validate, $Editors, $Ajax, $sql_queries;
 
-       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 "<script>
                _focus = '" . get_post('_focus') . "';
-               _validate = " . JsHttpRequest::php2js($Validate).";
-               var editors = ".JsHttpRequest::php2js($Editors).";
+               _validate = " . $Ajax->php2js($Validate).";
+               var $edits
        </script>";
 
        add_user_js_data();
@@ -34,6 +32,12 @@ 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";
 }