From 1062d84d488d08a3efe52e07585e7ce3f3e80198 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 16 Feb 2012 05:04:17 +0000 Subject: [PATCH] Fixed bogus call to method on a string --- includes/cache/MessageCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cache/MessageCache.php b/includes/cache/MessageCache.php index 1d0ab902ed..8ee8fba928 100644 --- a/includes/cache/MessageCache.php +++ b/includes/cache/MessageCache.php @@ -753,7 +753,7 @@ class MessageCache { $message = $revision->getText(); if ($message === false) { // A possibly temporary loading failure. - wfDebugLog( 'MessageCache', __METHOD__ . ": failed to load message page text for {$title->getDbKey()} ($code)" ); + wfDebugLog( 'MessageCache', __METHOD__ . ": failed to load message page text for {$title} ($code)" ); } else { $this->mCache[$code][$title] = ' ' . $message; $this->mMemc->set( $titleKey, ' ' . $message, $this->mExpiry ); -- 2.20.1