diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-24 10:56:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-24 10:56:47 +0000 |
commit | de19dc51296747a67389fd4bc9a9e11565f571c5 (patch) | |
tree | c135c200c495636493e82861fa48cf11f29abd6b | |
parent | 2dcb89047757f1a7913adf7bc053ae28d909b8d3 (diff) | |
download | brdo-de19dc51296747a67389fd4bc9a9e11565f571c5.tar.gz brdo-de19dc51296747a67389fd4bc9a9e11565f571c5.tar.bz2 |
- Tiny change for sake of consistency: Blocked -> blocked, Active -> active.
-rw-r--r-- | modules/user.module | 2 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module index 0654931e9..34e8b7783 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1460,7 +1460,7 @@ function user_admin_edit($edit = array()) { $output .= implode("\n", module_invoke_all("user", "edit_form", $edit, $account)); $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 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_radios(t("Status"), "status", $account->status, array(t("Blocked"), t("Active"))); + $output .= form_radios(t("Status"), "status", $account->status, array(t("blocked"), t("active"))); $output .= form_radios(t("Role"), "rid", $account->rid, user_roles(1)); $output .= form_submit(t("Save account")); diff --git a/modules/user/user.module b/modules/user/user.module index 0654931e9..34e8b7783 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1460,7 +1460,7 @@ function user_admin_edit($edit = array()) { $output .= implode("\n", module_invoke_all("user", "edit_form", $edit, $account)); $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 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_radios(t("Status"), "status", $account->status, array(t("Blocked"), t("Active"))); + $output .= form_radios(t("Status"), "status", $account->status, array(t("blocked"), t("active"))); $output .= form_radios(t("Role"), "rid", $account->rid, user_roles(1)); $output .= form_submit(t("Save account")); |