mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix #1713 unable to set member extra vars value to empty string
This commit is contained in:
parent
0da2ef3c5f
commit
65dc194ed4
2 changed files with 2 additions and 2 deletions
|
|
@ -94,7 +94,7 @@ class memberAdminController extends member
|
|||
$all_args = Context::getRequestVars();
|
||||
foreach($config->signupForm as $formInfo)
|
||||
{
|
||||
if (!$formInfo->isDefaultForm && isset($all_args->{$formInfo->name}))
|
||||
if (!$formInfo->isDefaultForm)
|
||||
{
|
||||
$extra_vars->{$formInfo->name} = $all_args->{$formInfo->name};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue