summaryrefslogtreecommitdiff
path: root/modules/user.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user.module')
-rw-r--r--modules/user.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module
index bd29d03cd..6529b4c72 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -1101,7 +1101,7 @@ function user_view($uid = 0) {
theme("header");
theme("box", t("User account"), user_menu());
- theme("box", t("View user information"), $output);
+ theme("box", $user->name, $output);
theme("footer");
}
else if ($uid && $account = user_load(array("uid" => $uid, "status" => 1))) {
@@ -1114,7 +1114,7 @@ function user_view($uid = 0) {
}
theme("header");
- theme("box", t("View user information"), $output);
+ theme("box", $account->name, $output);
theme("footer");
}
else {