mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Fix #847 missing files in admin view
This commit is contained in:
parent
70577c086d
commit
15bba27967
2 changed files with 9 additions and 4 deletions
|
|
@ -82,8 +82,13 @@ class fileAdminModel extends file
|
|||
$args->exclude_module_srl = $obj->exclude_module_srl;
|
||||
if(toBool($obj->exclude_secret))
|
||||
{
|
||||
$args->document_status = 'PUBLIC';
|
||||
$args->comment_is_secret = 'N';
|
||||
$args->document_status = array('PUBLIC');
|
||||
$args->comment_is_secret = array('N');
|
||||
}
|
||||
else
|
||||
{
|
||||
$args->document_status = array('PUBLIC', 'PRIVATE', 'SECRET', 'TEMP');
|
||||
$args->comment_is_secret = array('Y', 'N');
|
||||
}
|
||||
// Execute the file.getFileList query
|
||||
$output = executeQuery('file.getFileList', $args, $columnList);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue