From: Aaron Schulz Date: Fri, 11 Jan 2013 05:30:48 +0000 (-0800) Subject: Fixed prefixed title text call. X-Git-Tag: 1.31.0-rc.0~21070 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/rappels.php?a=commitdiff_plain;h=6d2ed516be6e53dd60743fa0dce57e71cf661a51;p=lhc%2Fweb%2Fwiklou.git Fixed prefixed title text call. Change-Id: I796a2cc1687a7d50c8874b002839133f5f5326c7 --- diff --git a/includes/cache/HTMLCacheUpdate.php b/includes/cache/HTMLCacheUpdate.php index 8962cf345b..88e7928183 100644 --- a/includes/cache/HTMLCacheUpdate.php +++ b/includes/cache/HTMLCacheUpdate.php @@ -61,7 +61,7 @@ class HTMLCacheUpdate implements DeferrableUpdate { $count = $this->mTitle->getBacklinkCache()->getNumLinks( $this->mTable, 200 ); if ( $wgMaxBacklinksInvalidate !== false && $count > $wgMaxBacklinksInvalidate ) { - wfDebug( "Skipped HTML cache invalidation of {$this->mTitle->getPrefixedText}." ); + wfDebug( "Skipped HTML cache invalidation of {$this->mTitle->getPrefixedText()}." ); } elseif ( $count >= 200 ) { // many backlinks JobQueueGroup::singleton()->push( $job ); JobQueueGroup::singleton()->deduplicateRootJob( $job );