fix #2177 XEVE-17-023 회원의 이메일을 회원 정보에서 노출하지 않도록 변경

- 모듈 업데이트를 통해 기존 설정이 변경됩니다
- 회원의 이메일 주소를 공개하도록 설정할 수 없도록 합니다
- 최고 관리자에게는 회원 정보보기에서 이메일 주소를 확인할 수 있습니다
This commit is contained in:
bnu 2017-11-22 17:52:04 +09:00 committed by Kijin Sung
parent d7beeb783c
commit a199333a2e
3 changed files with 17 additions and 5 deletions

View file

@ -492,7 +492,7 @@ class memberAdminController extends member
$signupItem->required = in_array($key, $orgRequireds);
$signupItem->isUse = ($config->{$key} == 'Y') || in_array($key, $orgUse);
$signupItem->isPublic = ($signupItem->isUse) ? 'Y' : 'N';
if($key == 'password')
if(in_array($key, array('find_account_question', 'password', 'email_address')))
{
$signupItem->isPublic = 'N';
}