mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix wrong return value
$output->toBool()로 체크하는 서드파티에서 오류가 발생합니다. 항상 BaseObject()로 반환해야 합니다.
This commit is contained in:
parent
e8f431d691
commit
3c00ff1cc5
1 changed files with 1 additions and 1 deletions
|
|
@ -2009,7 +2009,7 @@ class memberController extends member
|
||||||
$output = executeQueryArray('member.getMemberGroupMember', $args);
|
$output = executeQueryArray('member.getMemberGroupMember', $args);
|
||||||
if ($output->data && count($output->data) == 1)
|
if ($output->data && count($output->data) == 1)
|
||||||
{
|
{
|
||||||
return;
|
return $output;
|
||||||
}
|
}
|
||||||
if ($output->data && count($output->data) > 1)
|
if ($output->data && count($output->data) > 1)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue