diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-14 13:48:35 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-14 13:48:35 +0000 |
commit | a5c05512fc526e65f1aa556874046d9ff74eb5a7 (patch) | |
tree | 7ea0d94d080abe5ef5deed037b482440b9663841 /modules/user/user.module | |
parent | 8cfbe41201754b1e0a27c8c6a34b732858c51054 (diff) | |
download | brdo-a5c05512fc526e65f1aa556874046d9ff74eb5a7.tar.gz brdo-a5c05512fc526e65f1aa556874046d9ff74eb5a7.tar.bz2 |
- added some missing title attributs to links.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 245a00a54..bc989c788 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -384,7 +384,7 @@ function user_link($type) { if ($type == "menu.misc") { if (user_access("access administration pages")) { - $links[] = la(t("administer %a", array("%a" => variable_get("site_name", "drupal")))); + $links[] = la(t("administer %a", array("%a" => variable_get("site_name", "drupal"))), array(), "", array("title" => t("Access administration pages."))); } $links[] = lm(t("logout"), array("mod" => "user", "op" => "logout"), "", array("title" => t("Logout."))); |