From: umherirrender Date: Thu, 3 Dec 2015 19:13:42 +0000 (+0100) Subject: Move Special:ChangeContentModel to the pagetools special page group X-Git-Tag: 1.31.0-rc.0~8827^2 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=f44bebc9cee03a4cd9997278418a74dd750b5906;p=lhc%2Fweb%2Fwiklou.git Move Special:ChangeContentModel to the pagetools special page group Acting on pages, so that group is better than the default of "other" The group is shown on Special:Specialpages Change-Id: I0d9734fa31775332fb8935bf4fc63ad3fb8a2852 --- diff --git a/includes/specials/SpecialChangeContentModel.php b/includes/specials/SpecialChangeContentModel.php index b0def59367..b702ca069c 100644 --- a/includes/specials/SpecialChangeContentModel.php +++ b/includes/specials/SpecialChangeContentModel.php @@ -220,4 +220,8 @@ class SpecialChangeContentModel extends FormSpecialPage { $out->setPageTitle( $this->msg( 'changecontentmodel-success-title' ) ); $out->addWikiMsg( 'changecontentmodel-success-text', $this->title ); } + + protected function getGroupName() { + return 'pagetools'; + } }