- Fixed colspan in tracker table.

- Renamed '... your ...' to '... my ...' (cfr. 'my account).
4.5.x
Dries Buytaert 2004-07-08 15:18:48 +00:00
parent bf42dddea7
commit 78876f01d5
2 changed files with 4 additions and 4 deletions

View File

@ -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'));

View File

@ -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'));