mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
group_srl을 list_order보다 먼저 확인하도록 수정
This commit is contained in:
parent
a7233a487f
commit
ecb068b1a0
1 changed files with 3 additions and 3 deletions
|
|
@ -1109,13 +1109,13 @@ class memberAdminController extends member
|
|||
if(!$output->toBool()) return $output;
|
||||
}
|
||||
|
||||
if(!isset($args->list_order) || $args->list_order=='')
|
||||
if(!$args->group_srl) $args->group_srl = getNextSequence();
|
||||
|
||||
if(!$args->list_order)
|
||||
{
|
||||
$args->list_order = $args->group_srl;
|
||||
}
|
||||
|
||||
if(!$args->group_srl) $args->group_srl = getNextSequence();
|
||||
$args->list_order = $args->group_srl;
|
||||
$output = executeQuery('member.insertGroup', $args);
|
||||
$this->_deleteMemberGroupCache($args->site_srl);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue