Removed the submit button for actions on multiple tables if the "onsubmit" event is handled by the browser.

This commit is contained in:
Loïc Chapeaux
2002-03-22 08:44:06 +00:00
parent c7de97d290
commit bd7f9958e2

View File

@@ -380,7 +380,14 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
. $strOptimizeTable . '</option>' . "\n"; . $strOptimizeTable . '</option>' . "\n";
?> ?>
</select> </select>
<input type="submit" value="<?php echo $strGo; ?>" /> <script type="text/javascript" language="javascript">
<!--
// Fake js to allow the use of the <noscript> tag
-->
</script>
<noscript>
<input type="submit" value="<?php echo $strGo; ?>" />
</noscript>
</td> </td>
</tr> </tr>
</table> </table>