mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fixed not recognized vtodo priority values
This commit is contained in:
parent
7217a92079
commit
d8907a4d2a
@ -378,7 +378,7 @@ class infolog_ical extends infolog_bo
|
||||
break;
|
||||
|
||||
case 'PRIORITY':
|
||||
if (1 <= $attributes['value'] && $attributes['value'] <= 3) {
|
||||
if (1 <= $attributes['value'] && $attributes['value'] <= 9) {
|
||||
$taskData['info_priority'] = $this->vcal_priority2egw_priority[$attributes['value']];
|
||||
} else {
|
||||
$taskData['info_priority'] = 1; // default = normal
|
||||
|
Loading…
Reference in New Issue
Block a user