summaryrefslogtreecommitdiff
path: root/modules/tracker.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
commit9574766ad8f8810baf42a81ae105984254f0fc0a (patch)
tree12a5015957b5d6cdb3c4f24680a5bf23bab0e67c /modules/tracker.module
parente19a3cf42d73942e37ca644f8ba5fa271b983e3d (diff)
downloadbrdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.gz
brdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.bz2
- Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve consistency.
Diffstat (limited to 'modules/tracker.module')
-rw-r--r--modules/tracker.module4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/tracker.module b/modules/tracker.module
index f31389a80..1c00c565e 100644
--- a/modules/tracker.module
+++ b/modules/tracker.module
@@ -41,7 +41,9 @@ function tracker_menu($may_cache) {
if (arg(0) == 'user' && is_numeric(arg(1))) {
$items[] = array('path' => 'user/'. arg(1) .'/track', 'title' => t('track'),
'callback' => 'tracker_track_user', 'access' => user_access('access content'),
- 'type' => MENU_LOCAL_TASK);
+ 'type' => MENU_IS_LOCAL_TASK);
+ $items[] = array('path' => 'user/'. arg(1) .'/track/posts', 'title' => t('track posts'),
+ 'type' => MENU_DEFAULT_LOCAL_TASK);
}
}