Use correct variable

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2014-05-10 17:06:31 +02:00
parent 450106d83f
commit fb1db9f21b

View File

@ -809,7 +809,7 @@ class PMA_NavigationTree
$match = true;
foreach ($tree as $path) {
$match = true;
foreach ($paths[$attribute] as $key => $part) {
foreach ($paths as $key => $part) {
if (! isset($path[$key]) || $part != $path[$key]) {
$match = false;
break;