Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Form / RegionalForm.php
index a66b26b104224c49600a2eaab188857c855feefc..ccd880ace075c627d6cf0bb93de279ed589e55ac 100644 (file)
@@ -10,6 +10,8 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Configure regional settings for this site.
+ *
+ * @internal
  */
 class RegionalForm extends ConfigFormBase {
 
@@ -123,7 +125,7 @@ class RegionalForm extends ConfigFormBase {
       '#type' => 'checkbox',
       '#title' => t('Remind users at login if their time zone is not set'),
       '#default_value' => $system_date->get('timezone.user.warn'),
-      '#description' => t('Only applied if users may set their own time zone.')
+      '#description' => t('Only applied if users may set their own time zone.'),
     ];
 
     $form['timezone']['configurable_timezones_wrapper']['user_default_timezone'] = [
@@ -135,7 +137,7 @@ class RegionalForm extends ConfigFormBase {
         DRUPAL_USER_TIMEZONE_EMPTY   => t('Empty time zone'),
         DRUPAL_USER_TIMEZONE_SELECT  => t('Users may set their own time zone at registration'),
       ],
-      '#description' => t('Only applied if users may set their own time zone.')
+      '#description' => t('Only applied if users may set their own time zone.'),
     ];
 
     return parent::buildForm($form, $form_state);