From 6d2ed516be6e53dd60743fa0dce57e71cf661a51 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 10 Jan 2013 21:30:48 -0800 Subject: [PATCH] Fixed prefixed title text call. Change-Id: I796a2cc1687a7d50c8874b002839133f5f5326c7 --- includes/cache/HTMLCacheUpdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1