unneeded variable

This commit is contained in:
Marc Delisle
2004-06-14 23:17:44 +00:00
parent bdaf8242e4
commit 714d15110e
2 changed files with 3 additions and 2 deletions

View File

@@ -16,6 +16,9 @@ $Source$
* main.php: $theme='none' no longer a possible choice
* open.php: permits access to message strings in theme manager
* themes/index.php: new calling
My changes:
* libraries/common.lib.php: proper revision check
* libraries/select_theme.lib.php: remove unneeded counter
2004-06-13 Marc Delisle <lem9@users.sourceforge.net>
* many files: redesign part 3, thanks to Michael Keck (mkkeck).

View File

@@ -2,7 +2,6 @@
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* phpMyAdmin Theme Manager
* 2004-05-20: Michael Keck <mail_at_michaelkeck_dot_de>
@@ -63,7 +62,6 @@ if ($PMA_ThemeAvailable == TRUE) { // themeManager is available
while (false !== ($PMA_Theme = readdir($handleThemes))) { // get themes
if ($PMA_Theme != "." && $PMA_Theme != ".." && $PMA_Theme!='original' && $PMA_Theme!=$cfg['ThemeDefault'] && $PMA_Theme != 'CVS') { // file check
if (@is_dir($cfg['ThemePath'].'/'.$PMA_Theme)) { // check the theme
$themesCount++;
$available_themes_choices[]=$PMA_Theme;
} // end check the theme
} // end file check