Don't need existence check for the article, it's implied
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 3 Apr 2005 08:30:05 +0000 (08:30 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 3 Apr 2005 08:30:05 +0000 (08:30 +0000)
includes/SpecialRecentchanges.php

index 470489a..5af35a4 100644 (file)
@@ -132,10 +132,6 @@ function wfSpecialRecentchanges( $par ) {
        $batch = new LinkBatch;
        while( $row = $dbr->fetchObject( $res ) ){
                $rows[] = $row;
-               
-               // Title
-               $batch->add( $row->rc_namespace, $row->rc_title );
-
                // User page link
                $title = Title::makeTitleSafe( NS_USER, $row->rc_user_text );
                $batch->addObj( $title );