added <noscript></noscript> for the submit button

This commit is contained in:
Olivier Müller
2002-01-12 13:34:33 +00:00
parent f2567b035f
commit 1ac8f9ab48
3 changed files with 7 additions and 2 deletions

View File

@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-01-12 Olivier M<>ller <om@omnis.ch>
* main.php3, leftlight.php3: added <noscript></noscript> to hide the
"Go" submit button when the browser supports JS (ist that XHTML compliant?:)
(thx. JF ;)
2002-01-11 Olivier M<>ller <om@omnis.ch> 2002-01-11 Olivier M<>ller <om@omnis.ch>
* lang/*: added $strSelectAll / $strUnselectAll, used in db_details.php3 * lang/*: added $strSelectAll / $strUnselectAll, used in db_details.php3
* leftlight.php3, config.inc.php3, db_details.php3, index.php3, main.php3, * leftlight.php3, config.inc.php3, db_details.php3, index.php3, main.php3,

View File

@@ -232,7 +232,7 @@ if ($num_dbs > 1) {
} // end for $t (db list) } // end for $t (db list)
echo '</select>'; echo '</select>';
echo '<input type="submit" name="Go" value="Go">'; echo '<noscript><input type="submit" name="Go" value="Go"></noscript>';
echo '</form>'; echo '</form>';
if (!$table_list) { if (!$table_list) {

View File

@@ -418,7 +418,7 @@ if (empty($cfgLang)) {
} }
?> ?>
</select> </select>
<input type="submit" value="Go" /> <noscript><input type="submit" value="Go" /></noscript>
</form> </form>
</td> </td>
</tr> </tr>