Removed onsubmit() attribute for noscript area

This commit is contained in:
Garvin Hicking
2003-07-17 10:41:00 +00:00
parent b25a0999bf
commit fd7fc125cd
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-07-17 Garvin Hicking <me@supergarv.de>
* tbl_query_box.php3: Removed onsubmit() attribute of the noscript area.
Thanks to andreas_e ;)
2003-07-16 Michal Cihar <nijel@users.sourceforge.net> 2003-07-16 Michal Cihar <nijel@users.sourceforge.net>
* lang/galician: Updated, thanks to Xos<6F> Calvo. * lang/galician: Updated, thanks to Xos<6F> Calvo.

View File

@@ -94,7 +94,7 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS'] && isset($is_inside_querywindow)
//--> //-->
</script> </script>
<noscript> <noscript>
<form method="post" target="phpmain<?php echo md5($cfg['PmaAbsoluteUri']); ?>" action="read_dump.php3"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> onsubmit="return checkSqlQuery(this)" name="sqlform"> <form method="post" target="phpmain<?php echo md5($cfg['PmaAbsoluteUri']); ?>" action="read_dump.php3"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> name="sqlform">
</noscript> </noscript>
<?php <?php
} else { } else {