From d93a15f331a058d8085d1c446b7a9b81f2830bb7 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 23 May 2017 20:38:39 -0700 Subject: [PATCH] registration: Avoid deprecated wfMemcKey() Change-Id: I8f4382d55ba2d006f1573e945c83c3fd541a2cb1 --- includes/registration/ExtensionRegistry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/registration/ExtensionRegistry.php b/includes/registration/ExtensionRegistry.php index 0423f71af5..0c5a67e9a7 100644 --- a/includes/registration/ExtensionRegistry.php +++ b/includes/registration/ExtensionRegistry.php @@ -137,7 +137,7 @@ class ExtensionRegistry { $cache = new EmptyBagOStuff(); } // See if this queue is in APC - $key = wfMemcKey( + $key = $cache->makeKey( 'registration', md5( json_encode( $this->queued + $versions ) ) ); -- 2.20.1