The branch, QA_3_4 has been updated via 396e4e99799c91a8c39f2bbe156e6795cdef6ee5 (commit) from 8cebaca19b08f8faa5eaebfdb2d87c466f274db8 (commit)
- Log ----------------------------------------------------------------- commit 396e4e99799c91a8c39f2bbe156e6795cdef6ee5 Author: Madhura Jayaratne madhura.cj@gmail.com Date: Wed Jun 15 20:06:26 2011 +0530
bug #3315741 [display] Inline query edit broken
-----------------------------------------------------------------------
Summary of changes: ChangeLog | 3 ++- js/functions.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 2d2d054..5e40b2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -phpMyAdmin - ChangeLog +phpMyAdmin - ChangeLog ======================
3.4.3.0 (not yet released) @@ -10,6 +10,7 @@ - bug #3313210 [interface] Columns class sometimes changed for nothing - patch #3313326 [interface] Some tooltips do not disappear - bug #3315720 [search] Fix search in non unicode tables +- bug #3315741 [display] Inline query edit broken
3.4.2.0 (2011-06-07) - bug #3301249 [interface] Iconic table operations does not remove inline edit label diff --git a/js/functions.js b/js/functions.js index cfbb25f..35ec292 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1116,7 +1116,7 @@ function changeMIMEType(db, table, reference, mime_type) * Jquery Coding for inline editing SQL_QUERY */ $(document).ready(function(){ - $(".inline_edit_sql").click( function(){ + $(".inline_edit_sql").live('click', function(){ var db = $(this).prev().find("input[name='db']").val(); var table = $(this).prev().find("input[name='table']").val(); var token = $(this).prev().find("input[name='token']").val();
hooks/post-receive