From: Aaron Schulz Date: Thu, 16 Feb 2012 05:04:17 +0000 (+0000) Subject: Fixed bogus call to method on a string X-Git-Tag: 1.31.0-rc.0~24674 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=1062d84d488d08a3efe52e07585e7ce3f3e80198;p=lhc%2Fweb%2Fwiklou.git Fixed bogus call to method on a string --- 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 );