mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 20:44:28 +09:00
Fix ambiguous column names in dispFileAdminList()
This commit is contained in:
parent
08d7483364
commit
9f632f2087
1 changed files with 3 additions and 2 deletions
|
|
@ -32,9 +32,10 @@ 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', 'module_srl'
|
$columnList = array('file_srl', 'upload_target_srl', 'upload_target_type', 'sid', 'files.module_srl'
|
||||||
, 'source_filename', 'isvalid', 'file_size', 'download_count', 'files.regdate', 'ipaddress', 'member.member_srl', 'member.nick_name', 'uploaded_filename');
|
, 'source_filename', 'isvalid', 'file_size', 'download_count', 'files.regdate', 'files.ipaddress', 'member.member_srl', 'member.nick_name', 'uploaded_filename');
|
||||||
$output = $oFileAdminModel->getFileList($args, $columnList);
|
$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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue