r78800 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r78799‎ | r78800 | r78801 >
Date:15:54, 22 December 2010
Author:catrope
Status:ok
Tags:
Comment:
Treat interwiki titles as known-bad in LinkCache, prevents useless queries for interwiki titles with possibly misleading results
Modified paths:
  • /trunk/phase3/includes/LinkCache.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/LinkCache.php
@@ -136,7 +136,7 @@
137137 wfProfileIn( __METHOD__ );
138138
139139 $key = $nt->getPrefixedDBkey();
140 - if ( $this->isBadLink( $key ) ) {
 140+ if ( $this->isBadLink( $key ) || $nt->isExternal() ) {
141141 wfProfileOut( __METHOD__ );
142142 return 0;
143143 }

Status & tagging log