mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-30 15:52:17 +09:00
Add login management screen to simple_world skin, too
This commit is contained in:
parent
8afddb8b5e
commit
07708195fb
3 changed files with 69 additions and 5 deletions
|
|
@ -226,8 +226,24 @@ class memberController extends member
|
|||
$autologin_info = array_first($output->data);
|
||||
if ($autologin_info->member_srl == $logged_info->member_srl)
|
||||
{
|
||||
executeQuery('member.deleteAutologin', $args);
|
||||
$output = executeQuery('member.deleteAutologin', $args);
|
||||
if ($output->toBool())
|
||||
{
|
||||
$this->add('deleted', 'Y');
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->add('deleted', 'N');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->add('deleted', 'N');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->add('deleted', 'N');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue