Prevent php info about missing index for old events
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5ea32a1bca
commit
63e24d0903
|
@ -172,7 +172,7 @@ class Event extends Base {
|
|||
|
||||
private function generateClassifiedObjectParameter(array $eventData) {
|
||||
$parameter = $this->generateObjectParameter($eventData);
|
||||
if ($eventData['classified']) {
|
||||
if (!empty($eventData['classified'])) {
|
||||
$parameter['name'] = $this->l->t('Busy');
|
||||
}
|
||||
return $parameter;
|
||||
|
|
Loading…
Reference in New Issue