From: Michael M Slusarz Date: Wed, 24 Nov 2010 23:29:45 +0000 (-0700) Subject: Fix function call X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9d3811ec914fa7cae28d936e8963e14e3ac03a64;p=horde.git Fix function call --- diff --git a/framework/Icalendar/lib/Horde/Icalendar.php b/framework/Icalendar/lib/Horde/Icalendar.php index 515ea5290..19f4138c4 100644 --- a/framework/Icalendar/lib/Horde/Icalendar.php +++ b/framework/Icalendar/lib/Horde/Icalendar.php @@ -1090,8 +1090,7 @@ class Horde_Icalendar } else { $attr_string = $name . $params_str . ':' . $value; if (!$this->oldFormat) { - $attr_string = Horde_String::wordwrap($attr_string, 75, $this->_newline . ' ', - true, 'utf-8', true); + $attr_string = Horde_String::wordwrap($attr_string, 75, $this->_newline . ' ', true, true); } $result .= $attr_string . $this->_newline; }