From b47e7fd8b15cf729402d0132fd91caf53c0a554e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 21 Jun 2009 21:13:35 +0000 Subject: [PATCH] Allow use of GENDER in 'activeusers-count' --- includes/specials/SpecialActiveusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}
  • "; -- 2.20.1