summaryrefslogtreecommitdiff
path: root/modules/tracker.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-07-08 15:18:48 +0000
committerDries Buytaert <dries@buytaert.net>2004-07-08 15:18:48 +0000
commit78876f01d5a2465667315ce736df565a6ebe6662 (patch)
tree5ea84c0198f8e872d2cf3bac726487e3cd0e04db /modules/tracker.module
parentbf42dddea7a20bd7a332d430dd2f361efd0141a6 (diff)
downloadbrdo-78876f01d5a2465667315ce736df565a6ebe6662.tar.gz
brdo-78876f01d5a2465667315ce736df565a6ebe6662.tar.bz2
- Fixed colspan in tracker table.
- Renamed '... your ...' to '... my ...' (cfr. 'my account).
Diffstat (limited to 'modules/tracker.module')
-rw-r--r--modules/tracker.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tracker.module b/modules/tracker.module
index a8cc7439d..bb77fcf59 100644
--- a/modules/tracker.module
+++ b/modules/tracker.module
@@ -35,7 +35,7 @@ function tracker_page($uid = 0) {
if ($user->uid) {
$output .= '<ul>';
- $output .= ' <li>'. l(t('Your active posts and discussions'), "tracker/$user->uid") .'</li>';
+ $output .= ' <li>'. l(t('My active posts and discussions'), "tracker/$user->uid") .'</li>';
$output .= ' <li>'. l(t('All active posts and discussions'), 'tracker') .'</li>';
$output .= '</ul>';
}
@@ -72,7 +72,7 @@ function tracker_page($uid = 0) {
}
if ($pager = theme('pager', NULL, 25, 0)) {
- $rows[] = array(array('data' => $pager, 'colspan' => 4));
+ $rows[] = array(array('data' => $pager, 'colspan' => 5));
}
$header = array(t('type'), t('post'), t('author'), t('replies'), t('last post'));