aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialPage.php
diff options
context:
space:
mode:
authorTim Starling <tstarling@users.mediawiki.org>2005-05-01 18:24:20 +0000
committerTim Starling <tstarling@users.mediawiki.org>2005-05-01 18:24:20 +0000
commitf98c133919920e5fa2ce48efc64a6d4930521e3a (patch)
tree99f1e59312f3d9380bf7c1b344b84cacba1ae371 /includes/SpecialPage.php
parent82ed5e1d9cf127a34689f46491908c59892e3a72 (diff)
downloadmediawikicore-f98c133919920e5fa2ce48efc64a6d4930521e3a.tar.gz
mediawikicore-f98c133919920e5fa2ce48efc64a6d4930521e3a.zip
Major changes to user groups:
* Added "static groups" feature to remove memcached/DB load time * Added i18n support, allowing names and descriptions to be optionally drawn from wfMsg/wfMsgForContent * Fixed Special:Groups, it is now half-decent. Too many changes to list here.
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8778
Diffstat (limited to 'includes/SpecialPage.php')
-rw-r--r--includes/SpecialPage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php
index 05aabb69db6d..7c2cb870319d 100644
--- a/includes/SpecialPage.php
+++ b/includes/SpecialPage.php
@@ -78,7 +78,7 @@ $wgSpecialPages = array(
'Unlockdb' => new SpecialPage( 'Unlockdb', 'siteadmin' ),
# 'Sitesettings' => new SpecialPage( 'Sitesettings', 'siteadmin' ),
'Userrights' => new SpecialPage( 'Userrights', 'userrights' ),
- 'Groups' => new SpecialPage( 'Groups', 'grouprights' ),
+ 'Groups' => new SpecialPage( 'Groups' ),
);
global $wgUseValidation ;