Merge pull request #1193 from conory/pr/select-limit

select 쿼리에 list_count=0 파라미터 전달시 LIMIT 해제
This commit is contained in:
conory 2019-08-30 19:54:14 +09:00 committed by GitHub
commit 5fb1352333
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View file

@ -602,7 +602,7 @@ class documentAdminController extends document
function deleteModuleDocument($module_srl)
{
$args = new stdClass;
$args->page = 0;
$args->list_count = 0;
$args->module_srl = intval($module_srl);
$document_list = executeQueryArray('document.getDocumentList', $args, array('document_srl'))->data;