tab indexes on diff links
authorGabriel Wicke <gwicke@users.mediawiki.org>
Fri, 9 Apr 2004 23:58:52 +0000 (23:58 +0000)
committerGabriel Wicke <gwicke@users.mediawiki.org>
Fri, 9 Apr 2004 23:58:52 +0000 (23:58 +0000)
includes/SpecialWatchlist.php

index 0d2ba1f..c98cd5f 100644 (file)
@@ -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();