diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-09 19:45:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-09 19:45:19 +0000 |
commit | 71ebc04a096f08502c14f718e2c75bcdf56b5367 (patch) | |
tree | 85b447552af8eceb8f9b4681e8e0304f1384c598 /modules/tracker/tracker.module | |
parent | 3d0765c5db46618fb7e4130e3b1f8b4b2ba1827f (diff) | |
download | brdo-71ebc04a096f08502c14f718e2c75bcdf56b5367.tar.gz brdo-71ebc04a096f08502c14f718e2c75bcdf56b5367.tar.bz2 |
- Fixed some link titles that were no longer correct due to the menu changes.
- Made sure that the link titles match the page titles.
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r-- | modules/tracker/tracker.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index 5b5a6a59c..cb75d04e2 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -6,7 +6,7 @@ function tracker_help($section = "admin/help#tracker") { switch ($section) { case 'admin/help#tracer': - $output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>"); + $output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>recent posts</i> link in the user block, a user may quickly review all recent postings.</p>"); break; case 'admin/system/modules#description': $output = t("Enables tracking of recent posts for users."); @@ -95,7 +95,7 @@ function tracker_user($type, &$edit, &$user) { case "view_private": case "view_public": if (user_access("access content")) { - return form_item(t("Recent posts"), l(t("view recent posts"), "tracker/$user->uid")); + return form_item(t("Recent posts"), l(t("recent posts"), "tracker/$user->uid")); } } } @@ -104,8 +104,8 @@ function tracker_page() { global $user; if (user_access("access content")) { - theme("header", t("Recent activity")); - theme("box", t("Recent activity"), tracker_posts(arg(1))); + theme("header", t("Recent posts")); + theme("box", t("Recent posts"), tracker_posts(arg(1))); theme("footer"); } } |