Skip to content

Commit

Permalink
Merge pull request #184 from catalyst/MOODLE_403_STABLE-fix-183
Browse files Browse the repository at this point in the history
fix #183 add space before line break in ICAL document
  • Loading branch information
matthewhilton authored Oct 14, 2024
2 parents ea8e9b0 + 422e058 commit 7d4e242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024090600;
$plugin->release = 2024090600;
$plugin->version = 2024101100;
$plugin->release = 2024101100;
$plugin->requires = 2023100900; // Requires 4.3.
$plugin->component = 'mod_facetoface';
$plugin->maturity = MATURITY_STABLE;
Expand Down

0 comments on commit 7d4e242

Please sign in to comment.