From: Tim Starling Date: Sun, 3 Apr 2005 08:30:05 +0000 (+0000) Subject: Don't need existence check for the article, it's implied X-Git-Tag: 1.5.0alpha1~413 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=10c548179cb75545e254e43adb046a392db35e47;p=lhc%2Fweb%2Fwiklou.git Don't need existence check for the article, it's implied --- diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 470489ab7b..5af35a4081 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -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 );