mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Fix empty ORGANIZER/ATTENDEE
This commit is contained in:
parent
444f714020
commit
2b0d9f5b43
@ -1222,7 +1222,7 @@ class Horde_iCalendar {
|
||||
$attr_string = $name . $params_str;
|
||||
if (strlen($value) > 0) {
|
||||
$attr_string .= ':' . $value;
|
||||
} elseif ($name != 'RRULE' && $name != 'ATTENDEE' && $name != 'ORGANIZER') {
|
||||
} elseif ($name != 'RRULE') {
|
||||
$attr_string .= ':';
|
||||
}
|
||||
if (!$this->isOldFormat()) {
|
||||
|
Loading…
Reference in New Issue
Block a user