X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialStatistics.php;h=6b85db66fad1dd151a022ba9108915103ed61cfd;hb=cc6425fc95dd32ece5585bcfa6e4d43728183825;hp=7d6d90ed4dca64f5e2a3d81d13c9e7337b02925c;hpb=ba940af288b377a08298ccf9dc2f6d207b881037;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index 7d6d90ed4d..6b85db66fa 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -111,7 +111,7 @@ class SpecialStatistics extends SpecialPage { * @param $number Float: a statistical number * @param $trExtraParams Array: params to table row, see Html::elememt * @param $descMsg String: message key - * @param $descMsgParam Array: message params + * @param array|string $descMsgParam Message parameters * @return string table row in HTML format */ private function formatRow( $text, $number, $trExtraParams = array(), $descMsg = '', $descMsgParam = '' ) { @@ -329,4 +329,8 @@ class SpecialStatistics extends SpecialPage { Xml::tags( 'th', array( 'colspan' => '2' ), $this->msg( $header )->parse() ) . Xml::closeElement( 'tr' ); } + + protected function getGroupName() { + return 'wiki'; + } }