From: Florian Date: Wed, 20 Jan 2016 18:17:07 +0000 (+0100) Subject: Fix autoload.php order X-Git-Tag: 1.31.0-rc.0~8186 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=6af638754d8b040179c0623de874201c24b0f5a5;p=lhc%2Fweb%2Fwiklou.git Fix autoload.php order Someone maybe added it by hand :) It will add some noise to other changes, where autoload.php is genereted with maintenance/generateLocalAutoload.php Change-Id: If064fcc1fe87165df72eaf368117e62a51b24e95 --- diff --git a/autoload.php b/autoload.php index 26b6598067..2f23924175 100644 --- a/autoload.php +++ b/autoload.php @@ -72,7 +72,6 @@ $wgAutoloadLocalClasses = array( 'ApiQueryAllMessages' => __DIR__ . '/includes/api/ApiQueryAllMessages.php', 'ApiQueryAllPages' => __DIR__ . '/includes/api/ApiQueryAllPages.php', 'ApiQueryAllRevisions' => __DIR__ . '/includes/api/ApiQueryAllRevisions.php', - 'ApiQueryMyStashedFiles' => __DIR__ . '/includes/api/ApiQueryMyStashedFiles.php', 'ApiQueryAllUsers' => __DIR__ . '/includes/api/ApiQueryAllUsers.php', 'ApiQueryBacklinks' => __DIR__ . '/includes/api/ApiQueryBacklinks.php', 'ApiQueryBacklinksprop' => __DIR__ . '/includes/api/ApiQueryBacklinksprop.php', @@ -101,6 +100,7 @@ $wgAutoloadLocalClasses = array( 'ApiQueryLangLinks' => __DIR__ . '/includes/api/ApiQueryLangLinks.php', 'ApiQueryLinks' => __DIR__ . '/includes/api/ApiQueryLinks.php', 'ApiQueryLogEvents' => __DIR__ . '/includes/api/ApiQueryLogEvents.php', + 'ApiQueryMyStashedFiles' => __DIR__ . '/includes/api/ApiQueryMyStashedFiles.php', 'ApiQueryPagePropNames' => __DIR__ . '/includes/api/ApiQueryPagePropNames.php', 'ApiQueryPageProps' => __DIR__ . '/includes/api/ApiQueryPageProps.php', 'ApiQueryPagesWithProp' => __DIR__ . '/includes/api/ApiQueryPagesWithProp.php',