Check for new valarms property when writing cache tags
This commit is contained in:
parent
2b6706c5ff
commit
2f87e09c3a
2 changed files with 2 additions and 2 deletions
|
@ -199,7 +199,7 @@ class kolab_format_event extends kolab_format_xcal
|
|||
$tags[] = rcube_utils::normalize_string($cat);
|
||||
}
|
||||
|
||||
if (!empty($this->data['alarms'])) {
|
||||
if (!empty($this->data['valarms'])) {
|
||||
$tags[] = 'x-has-alarms';
|
||||
}
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ class kolab_format_task extends kolab_format_xcal
|
|||
if ($this->data['priority'] == 1)
|
||||
$tags[] = 'x-flagged';
|
||||
|
||||
if (!empty($this->data['alarms']))
|
||||
if (!empty($this->data['valarms']))
|
||||
$tags[] = 'x-has-alarms';
|
||||
|
||||
if ($this->data['parent_id'])
|
||||
|
|
Loading…
Add table
Reference in a new issue