[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_1RC1-33-ge936257

Madhura Jayaratne madhuracj at users.sourceforge.net
Sun May 22 18:33:43 CEST 2011


The branch, QA_3_4 has been updated
       via  e936257d44ba2103c03986dd7253519480e46fac (commit)
      from  16305005c58e57b4f89150fe01b93f9071131601 (commit)


- Log -----------------------------------------------------------------
commit e936257d44ba2103c03986dd7253519480e46fac
Author: Madhura Jayaratne <madhura.cj at gmail.com>
Date:   Sun May 22 22:01:47 2011 +0530

    bug #3305883 [interface] Table is dropped regardless of confirmation

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                        |    1 +
 js/sql.js                        |    7 ++++++-
 libraries/sql_query_form.lib.php |    3 +--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3942083..02db359 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@
 - patch #3303813 [setup] Define a label that was missing
 - bug #3305606 [interface] Show all button wraps on privileges page
 - bug #3305517 [config] Config for export compression not used
+- bug #3305883 [interface] Table is dropped regardless of confirmation
 
 3.4.1.0 (2011-05-20)
 - bug #3301108 [interface] Synchronize and already configured host
diff --git a/js/sql.js b/js/sql.js
index 13fade0..32a5bba 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -263,10 +263,15 @@ $(document).ready(function() {
      */
     $("#sqlqueryform.ajax").live('submit', function(event) {
         event.preventDefault();
+
+        $form = $(this);
+        if (! checkSqlQuery($form[0])) {
+            return false;
+        }
+
         // remove any div containing a previous error message
         $('.error').remove();
 
-        $form = $(this);
         var $msgbox = PMA_ajaxShowMessage();
 
         PMA_prepareForAjaxRequest($form);
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php
index 9852e0a..25f67cd 100644
--- a/libraries/sql_query_form.lib.php
+++ b/libraries/sql_query_form.lib.php
@@ -119,8 +119,7 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';')
         if ($GLOBALS['cfg']['AjaxEnable']) {
             echo ' class="ajax"';
         }
-        echo ' id="sqlqueryform"'
-            .' onsubmit="return checkSqlQuery(this)" name="sqlform">' . "\n";
+        echo ' id="sqlqueryform" name="sqlform">' . "\n";
     }
 
     if ($is_querywindow) {


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list