HTML fixes

This commit is contained in:
Roland Gruber 2007-11-19 18:56:29 +00:00
parent 39dcff3bda
commit c05bfe50f3
1 changed files with 3 additions and 3 deletions

View File

@ -65,8 +65,8 @@ if (isset($_POST['abort'])) {
// print header
echo $_SESSION['header'];
echo "<title></title>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
echo "<title></title>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $_GET['type'] . ".css\">\n";
echo "<title>Profile editor</title>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
echo "\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $_GET['type'] . ".css\">\n";
echo "</head><body><br>\n";
// save button was presed
@ -234,7 +234,7 @@ for ($m = 0; $m < sizeof($modules); $m++) {
$module = new $modules[$m]($type);
$iconImage = $module->getIcon();
if ($iconImage != null) {
$icon = '<img src="../../graphics/' . $iconImage . '"> ';
$icon = '<img src="../../graphics/' . $iconImage . '" alt="' . $iconImage . '"> ';
}
echo "<legend>$icon<b>" . getModuleAlias($modules[$m], $type) . "</b></legend>\n";
$profileTypes = parseHtml($modules[$m], $options[$modules[$m]], $old_options, true, $tabindex, $tabindexLink, $type);