HTML compliance

This commit is contained in:
Marc Delisle
2005-02-17 17:45:23 +00:00
parent 2964c58dfc
commit ce7a73ca18
3 changed files with 13 additions and 8 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-02-17 Marc Delisle <lem9@users.sourceforge.net>
* header.inc.php, queryframe.php: HTML improvement,
thanks to Armel Fauveau
2005-02-16 Alexander M. Turek <me@derrabus.de>
* db_details_export.php: Views are not exportable yet.
* themes/*/css/theme_right.css.php: Allow to mark a whole row as disabled.

View File

@@ -64,7 +64,7 @@ if (empty($GLOBALS['is_header_sent'])) {
document.write('<style type="text/css">');
document.write('img.lightbulb { cursor: pointer; }');
document.write('</style>');
document.write('<\/style>');
<?php
// Add some javascript instructions if required

View File

@@ -225,7 +225,7 @@ if ($cfg['MainPageIconic']) {
?>
<script type="text/javascript">
<!--
document.writeln('<a href="<?php echo $href; ?>" <?php echo $target . ' ' . $onclick; ?> class="item"><?php echo addslashes($query_frame_link_text); ?></a>');
document.writeln('<a href="<?php echo $href; ?>" <?php echo $target . ' ' . $onclick; ?> class="item"><?php echo addslashes($query_frame_link_text); ?><\/a>');
//-->
</script>
<noscript>
@@ -291,14 +291,13 @@ if ($num_dbs > 1) {
</tr>
<tr>
<td nowrap="nowrap">
<form method="post" action="index.php" name="left" target="_parent" style="margin: 0px; padding: 0px;">
<script type="text/javascript" language="javascript">
<!--
document.writeln('<form method="post" action="left.php" name="left" target="nav" style="margin: 0px; padding: 0px;">');
document.left.action="left.php";
document.left.target="nav";
//-->
</script>
<noscript>
<form method="post" action="index.php" name="left" target="_parent" style="margin: 0px; padding: 0px;">
</noscript>
<?php
echo PMA_generate_common_hidden_inputs();
echo ' <input type="hidden" name="hash" value="' . $hash . '" />' . "\n";
@@ -394,7 +393,9 @@ if ($num_dbs > 1) {
} // end for $i (db list)
?>
</select>
<noscript><input type="submit" name="Go" value="<?php echo $strGo; ?>" /></noscript>
<noscript>
<input type="submit" name="Go" value="<?php echo $strGo; ?>" />
</noscript>
</form>
</td>
</tr>