Allow use of GENDER in 'activeusers-count'
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 21 Jun 2009 21:13:35 +0000 (21:13 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 21 Jun 2009 21:13:35 +0000 (21:13 +0000)
includes/specials/SpecialActiveusers.php

index 365c888..d6418a0 100644 (file)
@@ -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 "<li>{$item} [{$count}]{$blocked}</li>";