mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-09-23 06:39:18 +00:00
awl interface related changes
This commit is contained in:
parent
1330892852
commit
b3c8a4ad0f
@ -197,7 +197,9 @@ function GetItip( VCalendar $vcal, $method, $attendee_value ) {
|
|||||||
case 'DTEND':
|
case 'DTEND':
|
||||||
case 'DUE':
|
case 'DUE':
|
||||||
$when = new RepeatRuleDateTime($property);
|
$when = new RepeatRuleDateTime($property);
|
||||||
$properties[] = new vProperty( $property->Name() . ":" . $when->UTC() );
|
$new_prop = new vProperty($property->Name());
|
||||||
|
$new_prop->Value($when->UTC());
|
||||||
|
$properties[] = $new_prop;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$properties[] = $property;
|
$properties[] = $property;
|
||||||
@ -205,7 +207,6 @@ function GetItip( VCalendar $vcal, $method, $attendee_value ) {
|
|||||||
}
|
}
|
||||||
$comp->SetProperties($properties);
|
$comp->SetProperties($properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $iTIP;
|
return $iTIP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user