From f6d65e533c62f6deb21342d4901ece24497b433e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 4 Jun 2015 07:31:04 +0200 Subject: Update to MediaWiki 1.25.1 --- includes/cache/LinkCache.php | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'includes/cache/LinkCache.php') diff --git a/includes/cache/LinkCache.php b/includes/cache/LinkCache.php index 6925df90..eace1eea 100644 --- a/includes/cache/LinkCache.php +++ b/includes/cache/LinkCache.php @@ -216,25 +216,20 @@ class LinkCache { * @return int */ public function addLinkObj( $nt ) { - global $wgAntiLockFlags, $wgContentHandlerUseDB; - - wfProfileIn( __METHOD__ ); + global $wgContentHandlerUseDB; $key = $nt->getPrefixedDBkey(); if ( $this->isBadLink( $key ) || $nt->isExternal() ) { - wfProfileOut( __METHOD__ ); return 0; } $id = $this->getGoodLinkID( $key ); if ( $id != 0 ) { - wfProfileOut( __METHOD__ ); return $id; } if ( $key === '' ) { - wfProfileOut( __METHOD__ ); return 0; } @@ -242,14 +237,8 @@ class LinkCache { # Some fields heavily used for linking... if ( $this->mForUpdate ) { $db = wfGetDB( DB_MASTER ); - if ( !( $wgAntiLockFlags & ALF_NO_LINK_LOCK ) ) { - $options = array( 'FOR UPDATE' ); - } else { - $options = array(); - } } else { $db = wfGetDB( DB_SLAVE ); - $options = array(); } $f = array( 'page_id', 'page_len', 'page_is_redirect', 'page_latest' ); @@ -259,7 +248,7 @@ class LinkCache { $s = $db->selectRow( 'page', $f, array( 'page_namespace' => $nt->getNamespace(), 'page_title' => $nt->getDBkey() ), - __METHOD__, $options ); + __METHOD__ ); # Set fields... if ( $s !== false ) { $this->addGoodLinkObjFromRow( $nt, $s ); @@ -269,8 +258,6 @@ class LinkCache { $id = 0; } - wfProfileOut( __METHOD__ ); - return $id; } -- cgit v1.2.3-54-g00ecf