Layout fixes
[fa-stable.git] / includes / page / header.inc
index 7d52f410bb77fbe25553f38681bbae94e6c27f99..f77de073cb9760b0b9ed161fb4f870aaa95979ee 100644 (file)
@@ -99,13 +99,14 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js=""
        if (!headers_sent()){
                header("Content-type: text/html; charset='$encoding'");
        }
+       echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
        echo "<html dir='" . $_SESSION['language']->dir . "' >\n";
        echo "<head><title>$title</title>";
        $local_stylesheet = $_SESSION['language']->get_stylesheet();
-       echo "<meta http-equiv='Content-type' content='text/html'; charset='$encoding'>";
-       echo "<link href='$local_path_to_root/themes/$theme/default.css' rel='stylesheet' type='text/css' /> \n";
+       echo "<meta http-equiv='Content-type' content='text/html; charset=$encoding'>";
+       echo "<link href='$local_path_to_root/themes/$theme/default.css' rel='stylesheet' type='text/css'> \n";
        if (file_exists($local_path_to_root. "/".$local_stylesheet))
-               echo "<link href='$local_path_to_root/$local_stylesheet' rel='stylesheet' type='text/css' /> \n";
+               echo "<link href='$local_path_to_root/$local_stylesheet' rel='stylesheet' type='text/css'> \n";
        send_scripts($js);
 
        echo "</head> \n";