Skip to content

Commit

Permalink
fix #183 add space before line break in ICAL document
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarat87 committed Oct 10, 2024
1 parent ea8e9b0 commit 68d29d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 68d29d6

Please sign in to comment.