Fix partial search result in admin document list and member document list

This commit is contained in:
Kijin Sung 2023-12-30 20:56:24 +09:00
parent c7811969ba
commit 9aaf785309
3 changed files with 8 additions and 3 deletions

View file

@ -539,6 +539,7 @@ class MemberView extends Member
$args->module_srl = intval(Context::get('selected_module_srl')) ?: null;
$args->sort_index = 'list_order';
$args->statusList = array('PUBLIC', 'SECRET');
$args->use_division = false;
$columnList = array('document_srl', 'module_srl', 'category_srl', 'member_srl', 'title', 'nick_name', 'comment_count', 'trackback_count', 'readed_count', 'voted_count', 'blamed_count', 'regdate', 'ipaddress', 'status');
$output = DocumentModel::getDocumentList($args, false, false, $columnList);