1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-17 22:45:54 +02:00

MDL-36592 calendar: Parse all line endings

Conflicts:

	lib/bennu/iCalendar_components.php
This commit is contained in:
Ankit Agarwal 2012-11-20 11:33:29 +08:00
parent 2d7c5eeeea
commit 366e3dfaaf
2 changed files with 3 additions and 2 deletions

@ -232,7 +232,7 @@ class iCalendar_component {
function unserialize($string) {
$string = rfc2445_unfold($string); // Unfold any long lines
$lines = explode(RFC2445_CRLF, $string); // Create an array of lines
$lines = preg_split("<".RFC2445_CRLF."|\n|\r>", $string, 0, PREG_SPLIT_NO_EMPTY); // Create an array of lines.
$components = array(); // Initialise a stack of components
$this->clear_errors();

@ -2,4 +2,5 @@ Description of Bennu library import - customised library by author, this version
modifications:
1/ removed ereg functions deprecated as of php 5.3 (18 Nov 2009)
2/ replaced mbstring functions with moodle textlib (28 Nov 2011)
2/ replaced mbstring functions with moodle textlib (28 Nov 2011)
3/ replaced explode in iCalendar_component::unserialize() with preg_split to support various line breaks (20 Nov 2012)