mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-14 17:30:11 +01:00
fixed not recognized vtodo priority values
This commit is contained in:
parent
9993092b7f
commit
84a1412c53
@ -359,9 +359,12 @@ class infolog_ical extends infolog_bo
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'PRIORITY':
|
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']];
|
$taskData['info_priority'] = $this->vcal_priority2egw_priority[$attributes['value']];
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
$taskData['info_priority'] = 1; // default = normal
|
$taskData['info_priority'] = 1; // default = normal
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user