diff --git a/bridges/ARDMediathekBridge.php b/bridges/ARDMediathekBridge.php index e3c9967a..97250272 100644 --- a/bridges/ARDMediathekBridge.php +++ b/bridges/ARDMediathekBridge.php @@ -51,6 +51,8 @@ class ARDMediathekBridge extends BridgeAbstract { ); public function collectData() { + $oldTz = date_default_timezone_get(); + date_default_timezone_set('Europe/Berlin'); $pathComponents = explode('/', $this->getInput('path')); @@ -87,5 +89,7 @@ class ARDMediathekBridge extends BridgeAbstract { $item['author'] = $video->publicationService->name; $this->items[] = $item; } + + date_default_timezone_set($oldTz); } }