Merge branch 'QA_3_4'

This commit is contained in:
Madhura Jayaratne 2011-06-15 20:10:54 +05:30
commit 0886178859
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
phpMyAdmin - ChangeLog
phpMyAdmin - ChangeLog
======================
3.5.0.0 (not yet released)
@ -29,6 +29,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

View File

@ -1151,7 +1151,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();