git-svn-id: http://xe-core.googlecode.com/svn/trunk@919 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-03 01:49:45 +00:00
parent 2cf7d0223f
commit 3a1abb56d9
5 changed files with 30 additions and 5 deletions

View file

@ -23,6 +23,7 @@
$args->page_count = 10; ///< 페이지 네비게이션에 나타날 페이지의 수
$args->sort_index = 'file_srl'; ///< 소팅 값
$args->isvalid = Context::get('isvalid');
// 목록 구함
$oFileModel = &getModel('file');
@ -31,6 +32,7 @@
// 목록의 loop를 돌면서 mid를 구하기 위한 module_srl값을 구함
$file_count = count($output->data);
if($file_count) {
$module_srl_list = array();
foreach($output->data as $key => $val) {
$module_srl = $val->module_srl;
if(!in_array($module_srl, $module_srl_list)) $module_srl_list[] = $module_srl;