Skip to content

Commit

Permalink
Merge pull request #2092 from mjansenDatabay/bugfix-icalparser-contin…
Browse files Browse the repository at this point in the history
…ue-in-switch

Calendar: Fix continue targeting switch (https://www.php.net/manual/e…
  • Loading branch information
smeyer-ilias authored Aug 16, 2019
2 parents 9d409f9 + bee7eb8 commit 20d3290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/Calendar/classes/iCal/class.ilICalParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ protected function parseLine($line)
if(strpos(trim($line),'BEGIN') === 0)
{
$this->log->info('Do not handling line:'.$line);
continue;
break;
}
if(strpos(trim($line),'X-WR-TIMEZONE') === 0)
{
Expand Down

0 comments on commit 20d3290

Please sign in to comment.