diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-01-07 22:08:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-01-07 22:08:52 +0000 |
commit | c71e1339584173f47cb7c1869426ef3cf9639ef3 (patch) | |
tree | 97c9bfbe236a5a9e03a8588adf4436acefad241d /modules/user.module | |
parent | 0542bbd752d026523a5c3e252e6276302c8f97c8 (diff) | |
download | brdo-c71e1339584173f47cb7c1869426ef3cf9639ef3.tar.gz brdo-c71e1339584173f47cb7c1869426ef3cf9639ef3.tar.bz2 |
- Added about 50 title tags.
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/user.module b/modules/user.module index 2bf932dfe..a80d9db3b 100644 --- a/modules/user.module +++ b/modules/user.module @@ -414,12 +414,12 @@ function user_search($keys) { function user_link($type) { if ($type == "page") { - $links[] = "<a href=\"module.php?mod=user\">". t("user account") ."</a>"; + $links[] = "<a href=\"module.php?mod=user\" title=\"". t("Create a user account, e-mail a new password or edit your account settings.") ."\">". t("user account") ."</a>"; } if ($type == "menu") { - $links[] = "<a href=\"module.php?mod=user&op=edit\">". t("account settings") ."</a>"; - $links[] = "<br /><a href=\"module.php?mod=user&op=logout\">". t("logout") ."</a>"; + $links[] = "<a href=\"module.php?mod=user&op=edit\" title=\"". t("View and edit your account information.") ."\">". t("account settings") ."</a>"; + $links[] = "<br /><a href=\"module.php?mod=user&op=logout\" title=\"". t("Logout.") ."\">". t("logout") ."</a>"; } if ($type == "admin" && user_access("administer users")) { |