forked from extern/egroupware
fix Api\Accounts::username(): Argument #1 ($account_id) must be of type ?int, string given
This commit is contained in:
parent
c8547466a4
commit
cb991f1243
@ -190,7 +190,7 @@ class Customfields implements \IteratorAggregate
|
|||||||
/**
|
/**
|
||||||
* Format a single custom field value as string
|
* Format a single custom field value as string
|
||||||
*
|
*
|
||||||
* @param array $field field defintion incl. type
|
* @param array $field field definition incl. type
|
||||||
* @param string $value field value
|
* @param string $value field value
|
||||||
* @return string formatted value
|
* @return string formatted value
|
||||||
*/
|
*/
|
||||||
@ -204,7 +204,7 @@ class Customfields implements \IteratorAggregate
|
|||||||
$values = array();
|
$values = array();
|
||||||
foreach($field['rows'] > 1 ? explode(',', $value) : (array) $value as $value)
|
foreach($field['rows'] > 1 ? explode(',', $value) : (array) $value as $value)
|
||||||
{
|
{
|
||||||
$values[] = Api\Accounts::username($value);
|
$values[] = is_numeric($value) ? Api\Accounts::username($value) : $value;
|
||||||
}
|
}
|
||||||
$value = implode(', ',$values);
|
$value = implode(', ',$values);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user