From e0b97a75871ec96fb238a2a3c3ffe5f6c30ff542 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 13 Aug 2003 07:08:27 +0000 Subject: - Usability improvement: changed the title of the main block on the user information page. Suggested by Keith Instone. --- modules/user.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/user.module') 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 { -- cgit v1.2.3