#19023422 레이아웃/스킨 목록 출력시 이름순 정렬

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7608 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2010-07-19 05:39:42 +00:00
parent 86f2c7167c
commit 71f89ceadd
2 changed files with 4 additions and 0 deletions

View file

@ -83,6 +83,8 @@
$searched_count = count($searched_list);
if(!$searched_count) return;
natcasesort($searched_list);
// 찾아진 레이아웃 목록을 loop돌면서 필요한 정보를 간추려 return
for($i=0;$i<$searched_count;$i++) {
// 레이아웃의 이름

View file

@ -535,6 +535,8 @@
$list = FileHandler::readDir($skin_path);
if(!count($list)) return;
natcasesort($list);
foreach($list as $skin_name) {
unset($skin_info);
$skin_info = $this->loadSkinInfo($path, $skin_name, $dir);