#19233506 모듈 스킨설정에서 checkbox, radio, image 타입이 제대로 저장이 안되는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7784 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
cbrghost 2010-11-02 12:01:52 +00:00
parent 89d95e2f53
commit 4ce86bf705
4 changed files with 11 additions and 9 deletions

View file

@ -125,7 +125,8 @@
$type = $val->type;
if($skin_vars[$name]) $value = $skin_vars[$name]->value;
else $value = '';
if($type=="checkbox" && !$value) $value = array();
if($type=="checkbox") $value = $value?unserialize($value):array();
$skin_info->extra_vars[$key]->value= $value;
}
}