From 78876f01d5a2465667315ce736df565a6ebe6662 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Thu, 8 Jul 2004 15:18:48 +0000
Subject: [PATCH] - Fixed colspan in tracker table.

- Renamed '... your ...' to '... my ...' (cfr. 'my account).
---
 modules/tracker.module         | 4 ++--
 modules/tracker/tracker.module | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/tracker.module b/modules/tracker.module
index a8cc7439dbac..bb77fcf59908 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'));
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index a8cc7439dbac..bb77fcf59908 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/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'));
-- 
GitLab