From 68d29d675e0125f03dce057968174b25441188b0 Mon Sep 17 00:00:00 2001 From: guillaumebarat Date: Fri, 11 Oct 2024 09:56:16 +1000 Subject: [PATCH] fix #183 add space before line break in ICAL document --- lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.php b/lib.php index e4ca059..fd9d58d 100644 --- a/lib.php +++ b/lib.php @@ -3148,7 +3148,7 @@ function facetoface_ical_escape($text, $converthtml=false) { ); // Text should be wordwrapped at 75 octets, and there should be one whitespace after the newline that does the wrapping. - $text = wordwrap($text, 75, "\n ", true); + $text = wordwrap($text, 75, " \n ", true); return $text; }