From 940b57f1d329b8cc6bd18f5d48451cc58c0a7f6d Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 14 Dec 2012 13:18:43 -0800 Subject: [PATCH] Moved LocalisationCache under /cache. Change-Id: I54b230376ed682d6a6b7d6fa4fd5ab133c8c8b1b --- includes/AutoLoader.php | 14 +++++++------- includes/{ => cache}/LocalisationCache.php | 0 2 files changed, 7 insertions(+), 7 deletions(-) rename includes/{ => cache}/LocalisationCache.php (100%) diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 05929d2219..ecfe20801a 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -147,11 +147,11 @@ $wgAutoloadLocalClasses = array( 'IndexPager' => 'includes/Pager.php', 'Interwiki' => 'includes/interwiki/Interwiki.php', 'IP' => 'includes/IP.php', - 'LCStore' => 'includes/LocalisationCache.php', - 'LCStore_Accel' => 'includes/LocalisationCache.php', - 'LCStore_CDB' => 'includes/LocalisationCache.php', - 'LCStore_DB' => 'includes/LocalisationCache.php', - 'LCStore_Null' => 'includes/LocalisationCache.php', + 'LCStore' => 'includes/cache/LocalisationCache.php', + 'LCStore_Accel' => 'includes/cache/LocalisationCache.php', + 'LCStore_CDB' => 'includes/cache/LocalisationCache.php', + 'LCStore_DB' => 'includes/cache/LocalisationCache.php', + 'LCStore_Null' => 'includes/cache/LocalisationCache.php', 'LegacyTemplate' => 'includes/SkinLegacy.php', 'License' => 'includes/Licenses.php', 'Licenses' => 'includes/Licenses.php', @@ -159,8 +159,8 @@ $wgAutoloadLocalClasses = array( 'LinkFilter' => 'includes/LinkFilter.php', 'LinksUpdate' => 'includes/LinksUpdate.php', 'LinksDeletionUpdate' => 'includes/LinksUpdate.php', - 'LocalisationCache' => 'includes/LocalisationCache.php', - 'LocalisationCache_BulkLoad' => 'includes/LocalisationCache.php', + 'LocalisationCache' => 'includes/cache/LocalisationCache.php', + 'LocalisationCache_BulkLoad' => 'includes/cache/LocalisationCache.php', 'MagicWord' => 'includes/MagicWord.php', 'MagicWordArray' => 'includes/MagicWord.php', 'MailAddress' => 'includes/UserMailer.php', diff --git a/includes/LocalisationCache.php b/includes/cache/LocalisationCache.php similarity index 100% rename from includes/LocalisationCache.php rename to includes/cache/LocalisationCache.php -- 2.20.1