Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Core / Field / Plugin / Field / FieldFormatter / TimestampFormatter.php
index a24f5dd9b7509df849ecbb178dbe7ae42e430498..f73f08340ab23a707fc25192513867e6cbae60fc 100644 (file)
@@ -132,7 +132,7 @@ class TimestampFormatter extends FormatterBase implements ContainerFactoryPlugin
     $elements['timezone'] = [
       '#type' => 'select',
       '#title' => $this->t('Time zone'),
-      '#options' => ['' => $this->t('- Default site/user time zone -')] + system_time_zones(FALSE),
+      '#options' => ['' => $this->t('- Default site/user time zone -')] + system_time_zones(FALSE, TRUE),
       '#default_value' => $this->getSetting('timezone'),
     ];