From ebc8342d531fc02a370ba682974f003d5edcf054 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 10 Jul 2019 15:18:48 -0700 Subject: [PATCH] Add NS_MEDIAWIKI to LinkCache::isCacheable() to help MessageBlobStore cache regeneration Change-Id: I55550a0ea5b9db0c87a67bb8bc06e846db58b9fe --- includes/cache/LinkCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cache/LinkCache.php b/includes/cache/LinkCache.php index 1bcf948d2d..80181179e4 100644 --- a/includes/cache/LinkCache.php +++ b/includes/cache/LinkCache.php @@ -306,7 +306,7 @@ class LinkCache { private function isCacheable( LinkTarget $title ) { $ns = $title->getNamespace(); - if ( in_array( $ns, [ NS_TEMPLATE, NS_FILE, NS_CATEGORY ] ) ) { + if ( in_array( $ns, [ NS_TEMPLATE, NS_FILE, NS_CATEGORY, NS_MEDIAWIKI ] ) ) { return true; } // Focus on transcluded pages more than the main content -- 2.20.1