From f2553a0c58a27285957d722bb47046abccd4902a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 20 Sep 2011 08:39:29 +0000 Subject: [PATCH] Moved PatrolLog to logging folder, sorted the autoloaded entries alphabetically --- includes/AutoLoader.php | 12 ++++++------ includes/{ => logging}/PatrolLog.php | 0 2 files changed, 6 insertions(+), 6 deletions(-) rename includes/{ => logging}/PatrolLog.php (100%) diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index ae09c7e24b..1f2d1110e4 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -164,7 +164,6 @@ $wgAutoloadLocalClasses = array( 'PageQueryPage' => 'includes/PageQueryPage.php', 'Pager' => 'includes/Pager.php', 'PasswordError' => 'includes/User.php', - 'PatrolLog' => 'includes/PatrolLog.php', 'PermissionsError' => 'includes/Exception.php', 'PhpHttpRequest' => 'includes/HttpFunctions.php', 'PoolCounter' => 'includes/PoolCounter.php', @@ -538,16 +537,17 @@ $wgAutoloadLocalClasses = array( 'JSParser' => 'includes/libs/jsminplus.php', # includes/logging + 'DatabaseLogEntry' => 'includes/logging/LogEntry.php', + 'DeleteLogFormatter' => 'includes/logging/LogFormatter.php', + 'LegacyLogFormatter' => 'includes/logging/LogFormatter.php', 'LogEntry' => 'includes/logging/LogEntry.php', 'LogEntryBase' => 'includes/logging/LogEntry.php', - 'DatabaseLogEntry' => 'includes/logging/LogEntry.php', - 'RCDatabaseLogEntry' => 'includes/logging/LogEntry.php', - 'ManualLogEntry' => 'includes/logging/LogEntry.php', 'LogFormatter' => 'includes/logging/LogFormatter.php', - 'LegacyLogFormatter' => 'includes/logging/LogFormatter.php', - 'DeleteLogFormatter' => 'includes/logging/LogFormatter.php', + 'ManualLogEntry' => 'includes/logging/LogEntry.php', 'MoveLogFormatter' => 'includes/logging/LogFormatter.php', + 'PatrolLog' => 'includes/logging/PatrolLog.php', 'PatrolLogFormatter' => 'includes/logging/LogFormatter.php', + 'RCDatabaseLogEntry' => 'includes/logging/LogEntry.php', # includes/media 'BitmapHandler' => 'includes/media/Bitmap.php', diff --git a/includes/PatrolLog.php b/includes/logging/PatrolLog.php similarity index 100% rename from includes/PatrolLog.php rename to includes/logging/PatrolLog.php -- 2.20.1