mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-26 22:02:13 +09:00
#1861 회원설정에서 사용자 정의 항목을 사용할 때 회원 가입 또는 정보수정을 할 수 없는 문제 고침
- @kijin 님이 문제를 해결해주셨습니다
This commit is contained in:
parent
cf23b4c55b
commit
68ceadb90c
1 changed files with 1 additions and 1 deletions
|
|
@ -615,7 +615,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