Changeset 6090
- Timestamp:
- 05/29/08 22:36:26 (7 months ago)
- Files:
-
- 1 modified
-
trunk/interface/owner/control/server/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/control/server/index.php
r6089 r6090 33 33 if (is_dir(ROOT.'/skin/') && $handler = opendir(ROOT.'/skin/')) { 34 34 while (($file = readdir($handler)) !== false) { 35 if (!is_dir(ROOT.'/skin/') || substr($file, 0, 1) == '.' || $file == 'customize') { 35 if (!is_dir(ROOT.'/skin/') || in_array($file, array('.', '..', 'customize'))) { 36 continue; 37 } 38 if (!file_exists(ROOT.'/skin/'.$file.'/index.xml') || !file_exists(ROOT.'/skin/'.$file.'/skin.html')) { 36 39 continue; 37 40 }
