diff options
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |