#1861 회원설정에서 사용자 정의 항목을 사용할 때 회원 가입 또는 정보수정을 할 수 없는 문제 고침

- @kijin 님이 문제를 해결해주셨습니다
This commit is contained in:
bnu 2016-02-19 18:35:20 +09:00
parent cf23b4c55b
commit 68ceadb90c

View file

@ -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>';