From 880842885bd3e970bb752248ba72fb7b9957bc77 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 16 Oct 2003 17:29:26 +0000 Subject: - Fixed bug #3637: made comment module settings translatable. Patch #13 by Moshe. - Fixed bug #3642: removed duplicate settings from user page. Patch #14 by Moshe. - Fixed bug #3503: added 'forum topic' link to the 'create content' menu. Patch by Gobar. I think this might be more intuitive and consistent code-wise; I don't want to introduce small hacks. - Cache improvement: small cache improvement to prevent SQL errors. Patch by Jeremy. --- modules/user/user.module | 8 -------- 1 file changed, 8 deletions(-) (limited to 'modules/user/user.module') diff --git a/modules/user/user.module b/modules/user/user.module index 6142d4c57..f9a297bc7 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1551,14 +1551,6 @@ function user_admin_edit($edit = array()) { $output .= implode("\n", module_invoke_all("user", "edit_form", $edit, $account)); - $options = "\n"; - foreach (theme_list() as $key => $value) { - $options .= "\n"; - } - $output .= form_item(t("Theme"), "", 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 .")"; - $output .= form_select(t("Time zone"), "timezone", $account->timezone, $zones, t("Select what time you currently have and your time zone settings will be set appropriate.")); - $output .= form_select(t("Language"), "language", $account->language, $languages, t("Selecting a different language will change the language of the site.")); $output .= form_item(t("Password"), " ", t("Enter a new password twice if you want to change the current password for this user or leave it blank if you are happy with the current password.")); $output .= form_select(t("Status"), "status", $account->status, array(t("Blocked"), t("Active"))); $output .= form_select(t("Role"), "rid", $account->rid, user_roles(1)); -- cgit v1.2.3