mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
#17052187 최고관리자의 경우 회원 정보 수정시 필수항목을 입력하지 않아도 되도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6216 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
bca225a864
commit
eba9b603d1
1 changed files with 5 additions and 1 deletions
|
|
@ -353,6 +353,9 @@
|
|||
function getJoinFormList($filter_response = false) {
|
||||
global $lang;
|
||||
|
||||
// 최고관리자는 무시하도록 설정
|
||||
$logged_info = Context::get('logged_info');
|
||||
|
||||
if(!$this->join_form_list) {
|
||||
// list_order 컬럼의 정렬을 위한 인자 세팅
|
||||
$args->sort_index = "list_order";
|
||||
|
|
@ -399,7 +402,8 @@
|
|||
$obj->type = $val->column_type;
|
||||
$obj->name = $val->column_name;
|
||||
$obj->lang = $val->column_title;
|
||||
$obj->required = $val->required=='Y'?true:false;
|
||||
if($logged_info->is_admin != 'Y') $obj->required = $val->required=='Y'?true:false;
|
||||
else $obj->required = false;
|
||||
$filter_output[] = $obj;
|
||||
|
||||
unset($open_obj);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue