From 27853e94be5a2ce9394493993c908f2cc927da54 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Fri, 9 Apr 2004 23:58:52 +0000 Subject: [PATCH] tab indexes on diff links --- includes/SpecialWatchlist.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 0d2ba1fc8d..c98cd5f602 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -168,10 +168,11 @@ function wfSpecialWatchlist() $sk = $wgUser->getSkin(); $s = $sk->beginRecentChangesList(); - + $counter = 1; while ( $obj = wfFetchObject( $res ) ) { # Make fake RC entry $rc = RecentChange::newFromCurRow( $obj ); + $rc->counter = $counter++; $s .= $sk->recentChangesLine( $rc, true ); } $s .= $sk->endRecentChangesList(); -- 2.20.1