mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 20:01:36 +02:00
fixed lost type2 values in cf migration eg. InfoLog type cf is valid for
This commit is contained in:
parent
af9b8303d6
commit
74b98920de
@ -538,7 +538,7 @@ function phpgwapi_upgrade1_9_020()
|
|||||||
{
|
{
|
||||||
case 'private':
|
case 'private':
|
||||||
case 'type2':
|
case 'type2':
|
||||||
$val = $val ? implode(',', $val) : null;
|
$val = $val ? (is_array($val) ? implode(',', $val) : $val) : null;
|
||||||
break;
|
break;
|
||||||
case 'values':
|
case 'values':
|
||||||
$val = $val && is_array($val) ? json_encode($val) : null;
|
$val = $val && is_array($val) ? json_encode($val) : null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user