[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_8-12-g3713680

Madhura Jayaratne madhuracj at users.sourceforge.net
Wed Dec 7 11:45:38 CET 2011


The branch, QA_3_4 has been updated
       via  3713680c374b90163dae6db227611d1d609d2947 (commit)
      from  6e0a10494f6670b3e67d6fb219a96c8001dcea2c (commit)


- Log -----------------------------------------------------------------
commit 3713680c374b90163dae6db227611d1d609d2947
Author: dimka <dimka20 at users.sourceforge.net>
Date:   Wed Dec 7 16:13:16 2011 +0530

    bug #3449659 [navi] Fast filter broken with table tree

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

Summary of changes:
 ChangeLog        |    1 +
 js/navigation.js |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 0c3ce00..a1b15b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog
 - bug #3384035 [display] Problems regarding ShowTooltipAliasTB
 - bug #3306875 [edit] Can't rename a database that contains views
 - bug #3452506 [edit] Unable to move tables with triggers
+- bug #3449659 [navi] Fast filter broken with table tree
 
 3.4.8.0 (2011-12-01)
 - bug #3425230 [interface] enum data split at space char (more space to edit)
diff --git a/js/navigation.js b/js/navigation.js
index 5052848..cec60e2 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -152,7 +152,7 @@ function fast_filter(value){
         if (value && $elem.html().toLowerCase().indexOf(lowercase_value) == -1) {
             $elem.parent().hide();
         } else {
-            $elem.parent().show();
+            $elem.parents('li').show();
         }
     });
 }


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list