#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

@ -480,7 +480,8 @@
// 스킨 정보 필드에 메뉴 항목(stdClass)을 저장해놓은 경우가 있어
// 1.2.0 이상 버전으로 업그레이드한 후 모듈 업데이트할 때
// 오류가 발생하는 문제 수정
if (is_array($val) || is_object($val)) continue;
if (is_object($val)) continue;
if (is_array($val)) $val = serialize($val);
$args->name = trim($key);
$args->value = trim($val);