From 6ca612e2eafaa549a17d28dece2ad4567dc01531 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 2 Aug 2006 17:15:30 +0000 Subject: [PATCH] remove a line that does nothing --- libraries/Theme_Manager.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index 997668cfa1..bebf690163 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -239,7 +239,8 @@ class PMA_Theme_Manager { // check for themes directory while (false !== ($PMA_Theme = readdir($handleThemes))) { if (array_key_exists($PMA_Theme, $this->themes)) { - $this->themes[$PMA_Theme] = $this->themes[$PMA_Theme]; + // this does nothing! + //$this->themes[$PMA_Theme] = $this->themes[$PMA_Theme]; continue; } $new_theme = PMA_Theme::load($this->getThemesPath() . '/' . $PMA_Theme);