mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-12 06:52:12 +09:00
This commit is contained in:
parent
978aecd7a8
commit
2a7eeebcbd
19 changed files with 141 additions and 37 deletions
|
|
@ -183,7 +183,8 @@ class DocumentAdminController extends Document
|
|||
$options = array_map('trim', explode("\n", $options));
|
||||
}
|
||||
$desc = Context::get('desc') ? Context::get('desc') : '';
|
||||
$search = Context::get('search');
|
||||
$search = Context::get('search') === 'Y' ? 'Y' : 'N';
|
||||
$sort = Context::get('sort') === 'Y' ? 'Y' : 'N';
|
||||
$eid = Context::get('eid');
|
||||
$obj = new stdClass();
|
||||
|
||||
|
|
@ -210,7 +211,7 @@ class DocumentAdminController extends Document
|
|||
$oDocumentController = DocumentController::getInstance();
|
||||
$output = $oDocumentController->insertDocumentExtraKey(
|
||||
$module_srl, $var_idx, $name, $type, $is_required, $search,
|
||||
$default, $desc, $eid, $is_strict, $options
|
||||
$default, $desc, $eid, $is_strict, $options, $sort
|
||||
);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue