mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 03:12:55 +09:00
Merge pull request #299 from kijin/pr/fix-member-extra-info
#297 회원가입 확장변수가 누락되는 문제 수정
This commit is contained in:
commit
b78a291315
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