[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA4-2063-gb64abd6

Madhura Jayaratne madhuracj at users.sourceforge.net
Thu Apr 14 03:37:37 CEST 2011


The branch, master has been updated
       via  b64abd63f80ed9a8122d5ca3f2176e780d9860f2 (commit)
      from  7de39ef740107638c73cae22d175dba8edad8e48 (commit)


- Log -----------------------------------------------------------------
commit b64abd63f80ed9a8122d5ca3f2176e780d9860f2
Author: Madhura Jayaratne <madhura.cj at gmail.com>
Date:   Thu Apr 14 07:06:45 2011 +0530

    Bug #3286111 Inline edit save hides mysql message

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

Summary of changes:
 js/sql.js |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/js/sql.js b/js/sql.js
index 28c7287..7a70af3 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -930,10 +930,9 @@ $(document).ready(function() {
                     }
                     // remove possible previous feedback message
                     $('#result_query').remove();
-                    if (typeof data.result_query != 'undefined') {
+                    if (typeof data.sql_query != 'undefined') {
                         // display feedback
-                        $('#sqlqueryresults').prepend('<div id="result_query" align="left"></div>');
-                        $('#result_query').prepend(data.result_query);
+                        $('#sqlqueryresults').prepend(data.sql_query);
                     }
                     PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, data, disp_mode);
                 } else {


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list