summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-04-04 06:17:02 +0000
committerDries Buytaert <dries@buytaert.net>2003-04-04 06:17:02 +0000
commitcb2d27c78dbac76d396d2c254e6aefa1154ad1e4 (patch)
treedddc91c96a304580d3f4006b248d4682fadb9bbb /modules/user/user.module
parent45276202ccfaa44e8374394a8838127397a20154 (diff)
downloadbrdo-cb2d27c78dbac76d396d2c254e6aefa1154ad1e4.tar.gz
brdo-cb2d27c78dbac76d396d2c254e6aefa1154ad1e4.tar.bz2
- Patch by Ax. Fixed some syntax errors:
- case t("whatever"); + case t("whatever"):
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index d6f61b431..b8c3e5869 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1055,7 +1055,7 @@ function user_page() {
}
switch ($op) {
- case t("E-mail new password");
+ case t("E-mail new password"):
case "password":
theme("header");
theme("box", t("E-mail new password"), user_pass($edit));
@@ -1081,7 +1081,7 @@ function user_page() {
theme("footer");
break;
case t("Delete account"):
- case t("delete");
+ case t("delete"):
$output = user_delete();
theme("header");
theme("box", t("User account"), user_menu());