HTML fixes

This commit is contained in:
Roland Gruber 2007-12-31 13:13:37 +00:00
parent 68511872dd
commit 043e381582
5 changed files with 8 additions and 9 deletions

View File

@ -171,7 +171,7 @@ function config_showAccountModules($scope, $title) {
} }
// show account modules // show account modules
$icon = '<img alt="' . $scope . '" src="../../graphics/' . $scope . '.png">&nbsp'; $icon = '<img alt="' . $scope . '" src="../../graphics/' . $scope . '.png">&nbsp;';
echo "<fieldset class=\"" . $scope . "edit\"><legend>$icon<b>" . $title . "</b></legend><br>\n"; echo "<fieldset class=\"" . $scope . "edit\"><legend>$icon<b>" . $title . "</b></legend><br>\n";
echo "<table border=0 width=\"100%\">\n"; echo "<table border=0 width=\"100%\">\n";
// select boxes // select boxes
@ -270,7 +270,7 @@ function config_showAccountModules($scope, $title) {
echo "</fieldset>\n"; echo "</fieldset>\n";
echo "<p></p>\n"; echo "<br>\n";
return ($no_conflicts & $no_depends & $no_missing_basemodule); return ($no_conflicts & $no_depends & $no_missing_basemodule);

View File

@ -172,7 +172,7 @@ if (sizeof($availableTypes) > 0) {
echo "<fieldset><legend><b>" . _("Available account types") . "</b></legend>\n"; echo "<fieldset><legend><b>" . _("Available account types") . "</b></legend>\n";
echo "<table>\n"; echo "<table>\n";
for ($i = 0; $i < sizeof($availableTypes); $i++) { for ($i = 0; $i < sizeof($availableTypes); $i++) {
$icon = '<img alt="' . $availableTypes[$i] . '" src="../../graphics/' . $availableTypes[$i] . '.png">&nbsp'; $icon = '<img alt="' . $availableTypes[$i] . '" src="../../graphics/' . $availableTypes[$i] . '.png">&nbsp;';
echo "<tr>\n"; echo "<tr>\n";
echo "<td>$icon<b>" . getTypeAlias($availableTypes[$i]) . ": </b></td>\n"; echo "<td>$icon<b>" . getTypeAlias($availableTypes[$i]) . ": </b></td>\n";
echo "<td>" . getTypeDescription($availableTypes[$i]) . "</td>\n"; echo "<td>" . getTypeDescription($availableTypes[$i]) . "</td>\n";
@ -190,7 +190,7 @@ if (sizeof($activeTypes) > 0) {
echo "<fieldset><legend><b>" . _("Active account types") . "</b></legend><br>\n"; echo "<fieldset><legend><b>" . _("Active account types") . "</b></legend><br>\n";
for ($i = 0; $i < sizeof($activeTypes); $i++) { for ($i = 0; $i < sizeof($activeTypes); $i++) {
echo "<fieldset class=\"" . $activeTypes[$i] . "edit\">\n"; echo "<fieldset class=\"" . $activeTypes[$i] . "edit\">\n";
$icon = '<img alt="' . $activeTypes[$i] . '" src="../../graphics/' . $activeTypes[$i] . '.png">&nbsp'; $icon = '<img alt="' . $activeTypes[$i] . '" src="../../graphics/' . $activeTypes[$i] . '.png">&nbsp;';
echo "<legend>" . $icon . "<b>" . getTypeAlias($activeTypes[$i]) . ": </b>" . getTypeDescription($activeTypes[$i]) . "</legend>"; echo "<legend>" . $icon . "<b>" . getTypeAlias($activeTypes[$i]) . ": </b>" . getTypeDescription($activeTypes[$i]) . "</legend>";
echo "<br>\n"; echo "<br>\n";
echo "<table>\n"; echo "<table>\n";

View File

@ -280,7 +280,6 @@ function showMainPage($scope) {
echo "<br><br>\n"; echo "<br><br>\n";
echo "<a href=\"masscreate.php?getCSV=1\"><b>" . _("Download sample CSV file") . "</b></a>\n"; echo "<a href=\"masscreate.php?getCSV=1\"><b>" . _("Download sample CSV file") . "</b></a>\n";
echo "<br><br>\n"; echo "<br><br>\n";
echo "<p>\n";
echo "</body>\n"; echo "</body>\n";
echo "</html>\n"; echo "</html>\n";

View File

@ -107,7 +107,7 @@ echo $_SESSION['header'];
<link rel="stylesheet" type="text/css" href="../../style/type_user.css"> <link rel="stylesheet" type="text/css" href="../../style/type_user.css">
</head> </head>
<body> <body>
<p></p> <br>
<form action="pdfmain.php" method="post"> <form action="pdfmain.php" method="post">
<!-- pdf structure options --> <!-- pdf structure options -->
<fieldset class="useredit"> <fieldset class="useredit">
@ -146,7 +146,7 @@ echo $_SESSION['header'];
</tr> </tr>
</table> </table>
</fieldset> </fieldset>
<p></p> <br>
<!-- forward is used to check if buttons were pressed --> <!-- forward is used to check if buttons were pressed -->
<p> <p>

View File

@ -111,7 +111,7 @@ for ($i = 0; $i < sizeof($profileClasses); $i++) {
echo "</head>\n"; echo "</head>\n";
echo "<body>\n"; echo "<body>\n";
echo "<p></p>\n"; echo "<br>\n";
echo "<form action=\"profilemain.php\" method=\"post\">\n"; echo "<form action=\"profilemain.php\" method=\"post\">\n";
@ -159,7 +159,7 @@ for ($i = 0; $i < sizeof($profileClasses); $i++) {
echo "</table>\n"; echo "</table>\n";
echo "</fieldset>\n"; echo "</fieldset>\n";
echo "<p></p>\n"; echo "<br>\n";
} }