#359. 게시글 검색시 list_order를 asc로 이용할 경우에만 division을 이용한 검색이 되도록 변경하여 정렬이 desc일때에 검색이 제대로 되도록 하였습니다

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3516 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-09 06:16:17 +00:00
parent 3e8f44a374
commit bfeaa26f77

View file

@ -243,6 +243,11 @@
}
}
/**
* division은 list_order의 asc 정렬일때만 사용할 있음
**/
if($args->sort_index != 'list_order' || $args->order_type != 'asc') $use_division = false;
/**
* 만약 use_division이 true일 경우 document division을 이용하도록 변경
**/