summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/user.module4
-rw-r--r--modules/user/user.module4
2 files changed, 4 insertions, 4 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 {
diff --git a/modules/user/user.module b/modules/user/user.module
index bd29d03cd..6529b4c72 100644
--- a/modules/user/user.module
+++ b/modules/user/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 {