mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +09:00
Fix #1380 missing nick_name in waiting file list
This commit is contained in:
parent
82bf017f01
commit
b24cccc52e
2 changed files with 2 additions and 3 deletions
|
|
@ -32,9 +32,7 @@ class fileAdminView extends file
|
||||||
$args->module_srl = Context::get('module_srl');
|
$args->module_srl = Context::get('module_srl');
|
||||||
// Get a list
|
// Get a list
|
||||||
$oFileAdminModel = getAdminModel('file');
|
$oFileAdminModel = getAdminModel('file');
|
||||||
$columnList = array('file_srl', 'upload_target_srl', 'upload_target_type', 'sid', 'files.module_srl'
|
$output = $oFileAdminModel->getFileList($args);
|
||||||
, 'source_filename', 'isvalid', 'file_size', 'download_count', 'files.regdate', 'files.ipaddress', 'member.member_srl', 'member.nick_name', 'uploaded_filename');
|
|
||||||
$output = $oFileAdminModel->getFileList($args, $columnList);
|
|
||||||
|
|
||||||
// Get the document for looping a list
|
// Get the document for looping a list
|
||||||
if($output->data)
|
if($output->data)
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
</tables>
|
</tables>
|
||||||
<columns>
|
<columns>
|
||||||
<column name="files.*" />
|
<column name="files.*" />
|
||||||
|
<column name="member.nick_name" />
|
||||||
</columns>
|
</columns>
|
||||||
<conditions>
|
<conditions>
|
||||||
<condition operation="in" column="files.module_srl" var="s_module_srl" />
|
<condition operation="in" column="files.module_srl" var="s_module_srl" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue