From a3ae93f7768cbb4eb91a2473cdce0dc4936407f1 Mon Sep 17 00:00:00 2001 From: garas Date: Sun, 28 Nov 2010 08:12:22 -0500 Subject: [PATCH] patch #3112792 [navi] Left panel table grouping incorrect --- ChangeLog | 2 ++ navigation.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d9e6a3446..5895330dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -121,6 +121,8 @@ + rfe #3111455 [interface] Column highlighting and marking in table view + Visual query builder - bug #3115519 [interface] Prevent long queries from being shown in confirmation popup +- patch #3112792 [navi] Left panel table grouping incorrect, + thanks to garas - garas 3.3.9.0 (not yet released) - bug [doc] Fix references to MySQL doc diff --git a/navigation.php b/navigation.php index bebdb19d0..a45277c1f 100644 --- a/navigation.php +++ b/navigation.php @@ -606,7 +606,7 @@ function PMA_displayTableList($tables, $visible = false, echo '' . "\n"; } elseif (is_array($table)) { // the table was not grouped because it is the only one with its prefix - if (isset($table['is' . $sep . 'group'])) { + while (isset($table['is' . $sep . 'group'])) { // get the array with the actual table information foreach ($table as $value) { if(is_array($value)) {