mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix uninitialized stdClass in rarely used method
This commit is contained in:
parent
e69e0697a4
commit
3bd25f9538
1 changed files with 2 additions and 0 deletions
|
|
@ -770,6 +770,7 @@ class memberModel extends member
|
|||
*/
|
||||
function getJoinForm($member_join_form_srl)
|
||||
{
|
||||
$args = new stdClass();
|
||||
$args->member_join_form_srl = $member_join_form_srl;
|
||||
$output = executeQuery('member.getJoinForm', $args);
|
||||
$join_form = $output->data;
|
||||
|
|
@ -797,6 +798,7 @@ class memberModel extends member
|
|||
{
|
||||
if(!$this->denied_id_list)
|
||||
{
|
||||
$args = new stdClass();
|
||||
$args->sort_index = "list_order";
|
||||
$args->page = Context::get('page');
|
||||
$args->list_count = 40;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue