mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 16:52:16 +09:00
Fix #1607 denied/limited reason not being saved as extra vars
This commit is contained in:
parent
588520ff4b
commit
0986ddf87d
4 changed files with 25 additions and 15 deletions
|
|
@ -1167,6 +1167,13 @@ class memberController extends member
|
|||
$extra_vars->{$formInfo->name} = $all_args->{$formInfo->name};
|
||||
}
|
||||
}
|
||||
foreach($this->admin_extra_vars as $key)
|
||||
{
|
||||
if (isset($logged_info->{$key}))
|
||||
{
|
||||
$extra_vars->{$key} = $logged_info->{$key};
|
||||
}
|
||||
}
|
||||
$args->extra_vars = serialize($extra_vars);
|
||||
|
||||
// remove whitespace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue