From: Gabriel Wicke Date: Fri, 9 Apr 2004 23:58:52 +0000 (+0000) Subject: tab indexes on diff links X-Git-Tag: 1.3.0beta1~495 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=27853e94be5a2ce9394493993c908f2cc927da54;p=lhc%2Fweb%2Fwiklou.git tab indexes on diff links --- 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();