mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix User description set to null when modify info
xpressengine/xe-core#2009 by Xvezda
This commit is contained in:
parent
ba7400f9c8
commit
f193b8380d
1 changed files with 2 additions and 2 deletions
|
|
@ -2412,8 +2412,8 @@ class memberController extends member
|
|||
if(!$args->user_name) $args->user_name = $orgMemberInfo->user_name;
|
||||
if(!$args->user_id) $args->user_id = $orgMemberInfo->user_id;
|
||||
if(!$args->nick_name) $args->nick_name = $orgMemberInfo->nick_name;
|
||||
if(!$args->description) $args->description = '';
|
||||
if(!$args->birthday) $args->birthday = '';
|
||||
if(!$args->description) $args->description = $orgMemberInfo->description;
|
||||
if(!$args->birthday) $args->birthday = $orgMemberInfo->birthday;
|
||||
|
||||
$output = executeQuery('member.updateMember', $args);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue