From: Siebrand Mazeland Date: Sun, 21 Jun 2009 21:13:35 +0000 (+0000) Subject: Allow use of GENDER in 'activeusers-count' X-Git-Tag: 1.31.0-rc.0~41256 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=b47e7fd8b15cf729402d0132fd91caf53c0a554e;p=lhc%2Fweb%2Fwiklou.git Allow use of GENDER in 'activeusers-count' --- diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index 365c888d3e..d6418a0028 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -89,7 +89,7 @@ class ActiveUsersPager extends UsersPager { $groups = implode( ', ', $list ); $item = wfSpecialList( $name, $groups ); - $count = wfMsgExt( 'activeusers-count', array('parsemag'), $row->recentedits ); + $count = wfMsgExt( 'activeusers-count', array('parsemag'), $row->recentedits, $userName ); $blocked = $row->blocked ? ' ' . wfMsgExt( 'listusers-blocked', array( 'parsemag' ), $userName ) : ''; return "
  • {$item} [{$count}]{$blocked}
  • ";