EgoisT 39 Опубликовано 22 апреля, 2012 Может кому понадобится, в некоторых версиях проблема с выбором шаблона в адмике, проблему решил так: Переходим по пути \inc\classes и открываем файл class.functions.php находим такой абзац public function GetTemplate() { $template = array(); $dir = opendir(ROOT_DIR . "/skin"); while ($file = readdir($dir)) { if ($file != "." && $file != ".." && $file != "index.html" && $file != ".htaccess") { $template[] = $file; } } closedir($dir); $template_c = array_combine($template, $template); return $template_c; } Заменяем на public function GetTemplate() { $template = array(); $dir = opendir(ROOT_DIR . "/templates"); while ($file = readdir($dir)) { if ($file != "." && $file != ".." && $file != "index.html" && $file != ".htaccess") { $template[] = $file; } } closedir($dir); $template_c = array_combine($template, $template); return $template_c; } Заходим в админку и радуемся. 1 Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты