From acd8af476df02aaec2aab28639f9971cc028c408 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 5 Dec 2014 13:49:29 +0000 Subject: [PATCH] Issue #1055150 by rootwork, Devin Carlson, yoroy, brianV, JimmyAx: Time zone description is confusing on user register form --- core/modules/system/system.module | 1 - 1 file changed, 1 deletion(-) diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 52903cf06b3f..cb1687a25621 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -733,7 +733,6 @@ function system_user_timezone(&$form, FormStateInterface $form_state) { ); $user_input = $form_state->getUserInput(); if (!$account->getTimezone() && $account->id() == $user->id() && empty($user_input['timezone'])) { - $form['timezone']['#description'] = t('Your time zone setting will be automatically detected if possible. Confirm the selection and click save.'); $form['timezone']['#attached']['library'][] = 'core/drupal.timezone'; $form['timezone']['timezone']['#attributes'] = array('class' => array('timezone-detect')); }