fixed wrong doctype
This commit is contained in:
parent
21150d31dd
commit
cce1d5fdc4
|
@ -51,7 +51,17 @@ if ($_SESSION['config']->is_samba3()) {
|
||||||
$doms = $_SESSION['ldap']->search_domains($_SESSION['config']->get_domainSuffix());
|
$doms = $_SESSION['ldap']->search_domains($_SESSION['config']->get_domainSuffix());
|
||||||
}
|
}
|
||||||
|
|
||||||
echo $_SESSION['header'];
|
// get encoding
|
||||||
|
$lang = explode(":",$_SESSION['language']);
|
||||||
|
$lang = $lang[1];
|
||||||
|
|
||||||
|
echo "<?xml version=\"1.0\" encoding=\"$lang\"?>\n";
|
||||||
|
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\" \"http://www.w3.org/TR/html4/frameset.dtd\">\n";
|
||||||
|
echo "<html>\n";
|
||||||
|
echo "<head>\n";
|
||||||
|
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=$lang\">\n";
|
||||||
|
echo "<meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||||
|
echo "<meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||||
echo ("<title>LDAP Account Manager</title>\n");
|
echo ("<title>LDAP Account Manager</title>\n");
|
||||||
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">");
|
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">");
|
||||||
echo ("</head>\n");
|
echo ("</head>\n");
|
||||||
|
|
|
@ -53,7 +53,17 @@ if ($conf->get_DomainSuffix() && ($conf->get_DomainSuffix() != "")) {
|
||||||
if (!$res && !in_array($conf->get_DomainSuffix(), $new_suffs)) $new_suffs[] = $conf->get_DomainSuffix();
|
if (!$res && !in_array($conf->get_DomainSuffix(), $new_suffs)) $new_suffs[] = $conf->get_DomainSuffix();
|
||||||
}
|
}
|
||||||
|
|
||||||
echo $_SESSION['header'];
|
// get encoding
|
||||||
|
$lang = explode(":",$_SESSION['language']);
|
||||||
|
$lang = $lang[1];
|
||||||
|
|
||||||
|
echo "<?xml version=\"1.0\" encoding=\"$lang\"?>\n";
|
||||||
|
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\" \"http://www.w3.org/TR/html4/frameset.dtd\">\n";
|
||||||
|
echo "<html>\n";
|
||||||
|
echo "<head>\n";
|
||||||
|
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=$lang\">\n";
|
||||||
|
echo "<meta http-equiv=\"pragma\" content=\"no-cache\">\n";
|
||||||
|
echo "<meta http-equiv=\"cache-control\" content=\"no-cache\">\n";
|
||||||
echo ("<title>LDAP Account Manager</title>\n");
|
echo ("<title>LDAP Account Manager</title>\n");
|
||||||
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">");
|
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">");
|
||||||
echo ("</head>\n");
|
echo ("</head>\n");
|
||||||
|
|
Loading…
Reference in New Issue