1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-06-05 21:59:25 +02:00

fix empty WordPress timezone_string option resulting in Invalid DateTime [#10]

This commit is contained in:
Daniel Waxweiler
2021-08-24 19:23:57 +02:00
parent cee386acd2
commit 32e87115b3
5 changed files with 29 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ class EventsListWidget extends \WP_Widget {
$locale = str_replace('_', '-', get_locale());
$groupName = isset($options['groupName']) ? $options['groupName'] : '';
$url = Settings::getUrl();
$timeZone = get_option('timezone_string');
$timeZone = wp_timezone_string();
$isShortOffsetNameShown = Settings::isShortOffsetNameShown();
require dirname(__DIR__) . '/view/events-list.php';