From: Antoine Musso Date: Fri, 1 Oct 2004 15:44:44 +0000 (+0000) Subject: * restrict SpecialSitesettings to sysops. X-Git-Tag: 1.5.0alpha1~1710 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=05f3178f2f8b7a9fba8439b7e08b328424209f74;p=lhc%2Fweb%2Fwiklou.git * restrict SpecialSitesettings to sysops. * enable the future SpecialUserlevels (I am making the sql patch) --- diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 1c3a0d67f8..767b2c737d 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -89,7 +89,8 @@ $wgSpecialPages = array_merge($wgSpecialPages, array ( # "Import" => new SpecialPage( "Import", "sysop" ), 'Lockdb' => new SpecialPage( 'Lockdb', 'developer' ), 'Unlockdb' => new SpecialPage( 'Unlockdb', 'developer' ), - "Sitesettings" => new SpecialPage( "Sitesettings" ) + 'Sitesettings' => new SpecialPage( 'Sitesettings', 'sysop' ), + 'Userlevels' => new SpecialPage( 'Userlevels', 'sysop' ), )); /**