From 94c6600f99b1e4a0784b1f88c208e3a18ea07bce Mon Sep 17 00:00:00 2001 From: Jeroen De Dauw Date: Sun, 15 Aug 2010 10:02:17 +0000 Subject: [PATCH] Follow up to r71107 - moved forgotten global variables --- includes/DefaultSettings.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 5063b4c8f6..7b6b697f0c 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5088,6 +5088,37 @@ $wgUploadMaintenance = false; * Enabes or disables JavaScript-based suggestions of password strength */ $wgLivePasswordStrengthChecks = false; + +/** + * The location of the MediaWiki package repository to use. + * + * @since 1.17 + * @var string + */ +$wgRepositoryApiLocation = 'http://www.mediawiki.org/w/api.php'; + +/** + * The location of the remote web interface for the selected repository. + * + * @since 1.17 + * @var string + */ +$wgRepositoryLocation = 'http://www.mediawiki.org/wiki/Special:Repository'; + +/** + * List of package states to filter update detection and extension listing on. + * + * @since 1.17 + * @var array + */ +$wgRepositoryPackageStates = array( + //'dev', + //'alpha', + 'beta', + //'rc', + 'stable', + //'deprecated', +); /** * For really cool vim folding this needs to be at the end: -- 2.20.1