individual message cache entries should start with ' ', also in memcached
This commit is contained in:
parent
366c433fdb
commit
25e273216a
1 changed files with 1 additions and 1 deletions
|
|
@ -635,7 +635,7 @@ class MessageCache {
|
|||
$message = $revision->getText();
|
||||
if ($this->mUseCache) {
|
||||
$this->mCache[$code][$title] = ' ' . $message;
|
||||
$this->mMemc->set( $titleKey, $message, $this->mExpiry );
|
||||
$this->mMemc->set( $titleKey, ' ' . $message, $this->mExpiry );
|
||||
}
|
||||
} else {
|
||||
# Negative caching
|
||||
|
|
|
|||
Loading…
Reference in a new issue