mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Insert space after each item in a multiple select extravar
This commit is contained in:
parent
b0a00c39f2
commit
97460af76a
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ class Value
|
|||
case 'select':
|
||||
case 'radio':
|
||||
case 'checkbox':
|
||||
return is_array($value) ? implode(',', $value) : $value;
|
||||
return is_array($value) ? implode(', ', $value) : $value;
|
||||
case 'tel':
|
||||
case 'tel_v2':
|
||||
return is_array($value) ? implode('-', $value) : $value;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue