Layout - added class label for branch link
[fa-stable.git] / includes / page / footer.inc
index 7256dfe1aa41cb4910993cc2dc22b03c9b703d8f..23318932abfc68376ad4f2f4d76043fb29b59f23 100644 (file)
@@ -9,22 +9,20 @@
     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, $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 = ".JsHttpRequest::php2js($Editors).";";
+       $edits = "editors = ".$Ajax->php2js($Editors).";";
        $Ajax->addScript('editors', $edits);
 
        echo "<script>
                _focus = '" . get_post('_focus') . "';
-               _validate = " . JsHttpRequest::php2js($Validate).";
+               _validate = " . $Ajax->php2js($Validate).";
                var $edits
        </script>";