xhtml compliance
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$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>
|
2004-05-05 Michal Čihař <michal@cihar.com>
|
||||||
* lang/czech: Updated.
|
* lang/czech: Updated.
|
||||||
* tbl_properties_operations.php: Fixed documentation link.
|
* tbl_properties_operations.php: Fixed documentation link.
|
||||||
|
@@ -456,9 +456,13 @@ td.activetab {
|
|||||||
background-color: silver;
|
background-color: silver;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Textarea */
|
/* Textarea */
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
overflow: auto;
|
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) {
|
if ($server == 0 || count($cfg['Servers']) > 1) {
|
||||||
?>
|
?>
|
||||||
<!-- MySQL servers choice form -->
|
<!-- MySQL servers choice form -->
|
||||||
|
<form method="post" action="index.php" target="_parent" class="nospace">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th><?php echo $strServerChoice; ?></th>
|
<th><?php echo $strServerChoice; ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
<form method="post" action="index.php" target="_parent"><tr>
|
|
||||||
<td>
|
<td>
|
||||||
<select name="server">
|
<select name="server">
|
||||||
<?php
|
<?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="lang" value="<?php echo $lang; ?>" />
|
||||||
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
|
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
|
||||||
<input type="submit" value="<?php echo $strGo; ?>" />
|
<input type="submit" value="<?php echo $strGo; ?>" />
|
||||||
</form> </td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</form>
|
||||||
<br />
|
<br />
|
||||||
<?php
|
<?php
|
||||||
} // end of the servers choice form
|
} // end of the servers choice form
|
||||||
|
Reference in New Issue
Block a user