mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
fix Unsupported operand types error: no stati available for a custom type
Currently stati are not saved for custom types, need to be fixed
This commit is contained in:
parent
983bf15041
commit
ff69b8abd7
@ -2170,7 +2170,7 @@ class infolog_ui
|
||||
'Pr' => $this->bo->enums['priority'],
|
||||
'Ow' => 'select-account',
|
||||
//'Ac', // info_access: private||public
|
||||
'St' => $this->bo->status[$content['info_type']]+array('deleted' => 'deleted'),
|
||||
'St' => (array)$this->bo->status[$content['info_type']]+array('deleted' => 'deleted'),
|
||||
'Pe' => 'select-percent',
|
||||
'Co' => 'date-time',
|
||||
'st' => 'date-time',
|
||||
|
Loading…
Reference in New Issue
Block a user