xhtml compliance
This commit is contained in:
@@ -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.
|
||||
|
@@ -456,9 +456,13 @@ td.activetab {
|
||||
background-color: silver;
|
||||
}
|
||||
|
||||
|
||||
/* Textarea */
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.nospace {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
8
main.php
8
main.php
@@ -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
|
||||
|
Reference in New Issue
Block a user