diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2003-06-16 21:03:12 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2003-06-16 21:03:12 +0000 |
commit | 282566271fefb55470490771810453cc391516f1 (patch) | |
tree | 1cc9eeefee8ca87ab1dd56da55b72adf1ba00589 /modules/user.module | |
parent | 026c09b6ce8e2f1e25e91d5a432a968e321d080e (diff) | |
download | brdo-282566271fefb55470490771810453cc391516f1.tar.gz brdo-282566271fefb55470490771810453cc391516f1.tar.bz2 |
Bugfix: user timezone-selection now uses the site's configured date_format_long value rather than a hardcoded one.
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module index 4ca8af7b7..417aadd06 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1032,7 +1032,7 @@ function user_edit($edit = array()) { } $output .= form_item(t("Theme"), "<select name=\"edit[theme]\">$options</select>", t("Selecting a different theme will change the look and feel of the site.")); - for ($zone = -43200; $zone <= 46800; $zone += 3600) $zones[$zone] = date("l, F dS, Y - h:i A", time() - date("Z") + $zone) ." (GMT ". $zone / 3600 .")"; + for ($zone = -43200; $zone <= 46800; $zone += 3600) $zones[$zone] = date(variable_get("date_format_long", "l, F dS, Y - g:ia"), time() - date("Z") + $zone) ." (GMT ". $zone / 3600 .")"; $output .= form_select(t("Time zone"), "timezone", $edit["timezone"], $zones, t("Select what time you currently have and your time zone settings will be set appropriate.")); $output .= form_select(t("Language"), "language", $edit["language"], $languages, t("Selecting a different language will change the language of the site.")); $output .= form_item(t("Password"), "<input type=\"password\" name=\"edit[pass1]\" size=\"12\" maxlength=\"24\" /> <input type=\"password\" name=\"edit[pass2]\" size=\"12\" maxlength=\"24\" />", t("Enter your new password twice if you want to change your current password or leave it blank if you are happy with your current password.")); |