mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
Fix #297 member extra info on signup form
This commit is contained in:
parent
476c608879
commit
de682772d4
1 changed files with 1 additions and 1 deletions
|
|
@ -631,7 +631,7 @@ class memberAdminView extends member
|
|||
}
|
||||
|
||||
$replace = array_merge($extentionReplace, $replace);
|
||||
$inputTag = preg_replace_callback('@%(\w+)%@', function($n) { return $replace[$n[1]]; }, $template);
|
||||
$inputTag = preg_replace_callback('@%(\w+)%@', function($n) use($replace) { return $replace[$n[1]]; }, $template);
|
||||
|
||||
if($extendForm->description)
|
||||
$inputTag .= '<p class="help-block">'.$extendForm->description.'</p>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue