From f9d2cc0c3187195706bf348ef8a84e4caf99c44d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sat, 10 May 2014 11:21:49 +0200 Subject: [PATCH] Always initialize match variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/navigation/NavigationTree.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index f7fa6fee5e..025657afe1 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -806,6 +806,7 @@ class PMA_NavigationTree */ private function _findTreeMatch($tree, $attribute) { + $match = true; foreach ($tree as $path) { $match = true; foreach ($paths[$attribute] as $key => $part) {