xhtml compliance

This commit is contained in:
Garvin Hicking
2004-05-09 19:14:38 +00:00
parent 6aa1cf45c8
commit e83c817239
3 changed files with 13 additions and 5 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-05-09 Garvin Hicking <pma@supergarv.de>
* main.php, css/phpmyadmin.css.php: Corrected <form> position
to XHTML compliance. Introduced "nospace" class.
2004-05-05 Michal Čihař <michal@cihar.com>
* lang/czech: Updated.
* tbl_properties_operations.php: Fixed documentation link.

View File

@@ -456,9 +456,13 @@ td.activetab {
background-color: silver;
}
/* Textarea */
textarea {
overflow: auto;
}
.nospace {
margin: 0px;
padding: 0px;
}

View File

@@ -108,12 +108,12 @@ if (($server > 0) && isset($mode) && ($mode == 'reload')) {
if ($server == 0 || count($cfg['Servers']) > 1) {
?>
<!-- MySQL servers choice form -->
<form method="post" action="index.php" target="_parent" class="nospace">
<table>
<tr>
<th><?php echo $strServerChoice; ?></th>
</tr>
<form method="post" action="index.php" target="_parent"><tr>
<tr>
<td>
<select name="server">
<?php
@@ -150,10 +150,10 @@ if ($server == 0 || count($cfg['Servers']) > 1) {
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
<input type="submit" value="<?php echo $strGo; ?>" />
</form> </td>
</td>
</tr>
</table>
</form>
<br />
<?php
} // end of the servers choice form