remove a line that does nothing

This commit is contained in:
Marc Delisle 2006-08-02 17:15:30 +00:00
parent 249e8c1c12
commit 6ca612e2ea

View File

@ -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);