From 710bc6cccda6e155cbff0bfc67cab02fcae9f622 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Wed, 19 Jun 2019 09:20:56 +0000 Subject: [PATCH] Add missing 'break;' into RRule.php --- inc/RRule.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/RRule.php b/inc/RRule.php index 0d8cfa42..a28ebf73 100644 --- a/inc/RRule.php +++ b/inc/RRule.php @@ -1477,6 +1477,7 @@ function getComponentRange(vComponent $comp, $fallback_tzid = null) { if ( !isset($dtstart_prop) ) $dtstart_prop = $comp->GetProperty('DTSTAMP'); $dtend_prop = $dtstart_prop; + break; default: throw new Exception('getComponentRange cannot handle "'.$comp->GetType().'" components', 0); }