From 9d3811ec914fa7cae28d936e8963e14e3ac03a64 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 24 Nov 2010 16:29:45 -0700 Subject: [PATCH] Fix function call --- framework/Icalendar/lib/Horde/Icalendar.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; } -- 2.11.0