From 0b3e2ff21f133fc24a0b39260217c798abc82a59 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 13 Jan 2016 09:41:49 -0800 Subject: [PATCH] Fix purge method used in purgePatrolFooterCache() Change-Id: I62ed843ac9755e39c6693fa33594067689fd6e0f --- includes/page/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/page/Article.php b/includes/page/Article.php index 22e24aef46..c9af07504b 100644 --- a/includes/page/Article.php +++ b/includes/page/Article.php @@ -1229,7 +1229,7 @@ class Article implements Page { */ public static function purgePatrolFooterCache( $articleID ) { $cache = ObjectCache::getMainWANInstance(); - $cache->touchCheckKey( wfMemcKey( 'unpatrollable-page', $articleID ) ); + $cache->delete( wfMemcKey( 'unpatrollable-page', $articleID ) ); } /** -- 2.20.1