mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 06:19:09 +01:00
Fix empty value issue
This commit is contained in:
parent
28904f7aa8
commit
afd6dd3ef0
@ -1140,9 +1140,9 @@ class Horde_iCalendar {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$value = str_replace(array("\r", "\n"), array('', '\\n'), $value);
|
$value = str_replace(array("\r", "\n"), array('', '\\n'), $value);
|
||||||
$attr_string = $name . $params_str;
|
$attr_string = $name . $params_str . ':';
|
||||||
if (!empty($value)) {
|
if (!empty($value)) {
|
||||||
$attr_string .= ':' . $value;
|
$attr_string .= $value;
|
||||||
}
|
}
|
||||||
if (!$this->isOldFormat()) {
|
if (!$this->isOldFormat()) {
|
||||||
$attr_string = String::wordwrap($attr_string, 75, $this->_newline . ' ',
|
$attr_string = String::wordwrap($attr_string, 75, $this->_newline . ' ',
|
||||||
|
Loading…
Reference in New Issue
Block a user