mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Fix RRULE issue with trailing colon
This commit is contained in:
parent
67bd6b14bd
commit
e91b10b709
@ -1140,9 +1140,11 @@ class Horde_iCalendar {
|
||||
}
|
||||
} else {
|
||||
$value = str_replace(array("\r", "\n"), array('', '\\n'), $value);
|
||||
$attr_string = $name . $params_str . ':';
|
||||
$attr_string = $name . $params_str;
|
||||
if (!empty($value)) {
|
||||
$attr_string .= $value;
|
||||
$attr_string .= ':' . $value;
|
||||
} elseif ($name != 'RRULE') {
|
||||
$attr_string .= ':';
|
||||
}
|
||||
if (!$this->isOldFormat()) {
|
||||
$attr_string = String::wordwrap($attr_string, 75, $this->_newline . ' ',
|
||||
|
Loading…
Reference in New Issue
Block a user