mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 14:52:24 +09:00
Merge #1507 질문/답변을 통한 계정 찾기를 금지하는 옵션 추가 by kijin
* pr/1507: 비번찾기 질문/답변 항목은 공개 설정할 수 없도록 조치 질문/답변을 통한 계정 찾기가 허용되지 않은 경우 폼을 표시하지 않음 질문/답변을 통한 계정 찾기 허용 여부를 선택할 수 있도록 함 비번찾기 질문을 필수항목에서 제외
This commit is contained in:
commit
43a7226ff1
7 changed files with 51 additions and 6 deletions
|
|
@ -156,6 +156,7 @@ class memberAdminController extends member
|
|||
$args = Context::gets(
|
||||
'enable_join',
|
||||
'enable_confirm',
|
||||
'enable_find_account_question',
|
||||
'webmaster_name',
|
||||
'webmaster_email',
|
||||
'password_strength',
|
||||
|
|
@ -256,7 +257,7 @@ class memberAdminController extends member
|
|||
global $lang;
|
||||
$signupForm = array();
|
||||
$items = array('user_id', 'password', 'user_name', 'nick_name', 'email_address', 'find_account_question', 'homepage', 'blog', 'birthday', 'signature', 'profile_image', 'image_name', 'image_mark', 'profile_image_max_width', 'profile_image_max_height', 'image_name_max_width', 'image_name_max_height', 'image_mark_max_width', 'image_mark_max_height');
|
||||
$mustRequireds = array('email_address', 'nick_name', 'password', 'find_account_question');
|
||||
$mustRequireds = array('email_address', 'nick_name', 'password');
|
||||
$extendItems = $oMemberModel->getJoinFormList();
|
||||
foreach($list_order as $key)
|
||||
{
|
||||
|
|
@ -410,9 +411,9 @@ class memberAdminController extends member
|
|||
$extendItems = $oMemberModel->getJoinFormList();
|
||||
|
||||
$items = array('user_id', 'password', 'user_name', 'nick_name', 'email_address', 'find_account_question', 'homepage', 'blog', 'birthday', 'signature', 'profile_image', 'image_name', 'image_mark');
|
||||
$mustRequireds = array('email_address', 'nick_name','password', 'find_account_question');
|
||||
$orgRequireds = array('email_address', 'password', 'find_account_question', 'user_id', 'nick_name', 'user_name');
|
||||
$orgUse = array('email_address', 'password', 'find_account_question', 'user_id', 'nick_name', 'user_name', 'homepage', 'blog', 'birthday');
|
||||
$mustRequireds = array('email_address', 'nick_name', 'password');
|
||||
$orgRequireds = array('email_address', 'password', 'user_id', 'nick_name', 'user_name');
|
||||
$orgUse = array('email_address', 'password', 'user_id', 'nick_name', 'user_name', 'homepage', 'blog', 'birthday');
|
||||
$list_order = array();
|
||||
|
||||
foreach($items as $key)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue