Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 244 → Редакция 245

/trunk/lib/theme.php
24,7 → 24,7
 
function getThemesList() {
$result = array();
$handler = opendir('./themes/');
$handler = opendir('./themes/styles/');
while ($file = readdir($handler)) {
if ($file != '.' && $file != '..' && $file != '.svn') // && is_dir($file)
if (file_exists('./themes/styles/'.$file.'/style.css')) $result[] = $file;