From d77e1f41759a7170d22321f8f745495f2baeaae0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Thu, 5 Jan 2006 01:03:22 +0000 Subject: [PATCH] * Sorted $wgAvailableRights * Added unwatchedpages to $wgAvailableRights (see http://mail.wikimedia.org/pipermail/wikitech-l/2006-January/033427.html) --- includes/Defines.php | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/includes/Defines.php b/includes/Defines.php index dc6b31ac7f..69a7cdb490 100644 --- a/includes/Defines.php +++ b/includes/Defines.php @@ -76,22 +76,23 @@ define( 'MW_MATH_MATHML', 5 ); * @todo Is this necessary? */ $wgAvailableRights = array( - 'read', + 'block', + 'bot', + 'createaccount', + 'delete', 'edit', + 'editinterface', + 'import', + 'importupload', 'move', - 'delete', + 'patrol', 'protect', - 'block', - 'userrights', - 'createaccount', - 'upload', + 'read', 'rollback', - 'patrol', - 'editinterface', 'siteadmin', - 'bot', - 'import', - 'importupload' + 'unwatchedpages', + 'upload', + 'userrights', ); /**#@+ -- 2.20.1