mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 08:12:17 +09:00
회원가입시 확장변수 라디오 타입 버그
설문조사 아이템 순서 order type 정의 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5995 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
297b65d79e
commit
1dd306d4db
9 changed files with 28 additions and 12 deletions
|
|
@ -378,7 +378,7 @@
|
|||
$lang->extend_vars[$column_name] = $column_title;
|
||||
|
||||
// checkbox, select등 다수 데이터 형식일 경우 unserialize해줌
|
||||
if(in_array($column_type, array('checkbox','select'))) {
|
||||
if(in_array($column_type, array('checkbox','select','radio'))) {
|
||||
$join_form_list[$i]->default_value = unserialize($default_value);
|
||||
if(!$join_form_list[$i]->default_value[0]) $join_form_list[$i]->default_value = '';
|
||||
} else {
|
||||
|
|
@ -470,7 +470,7 @@
|
|||
$column_type = $join_form->column_type;
|
||||
$default_value = $join_form->default_value;
|
||||
|
||||
if(in_array($column_type, array('checkbox','select'))) {
|
||||
if(in_array($column_type, array('checkbox','select','radio'))) {
|
||||
$join_form->default_value = unserialize($default_value);
|
||||
} else {
|
||||
$join_form->default_value = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue