#17052187 최고관리자의 경우 회원 정보 수정시 필수항목을 입력하지 않아도 되도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6216 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-28 05:40:50 +00:00
parent bca225a864
commit eba9b603d1

View file

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