diff options
Diffstat (limited to 'MLEB/Translate/specials/SpecialMessageGroupStats.php')
-rw-r--r-- | MLEB/Translate/specials/SpecialMessageGroupStats.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/MLEB/Translate/specials/SpecialMessageGroupStats.php b/MLEB/Translate/specials/SpecialMessageGroupStats.php index 443d271c..338f70c0 100644 --- a/MLEB/Translate/specials/SpecialMessageGroupStats.php +++ b/MLEB/Translate/specials/SpecialMessageGroupStats.php @@ -21,11 +21,8 @@ class SpecialMessageGroupStats extends SpecialLanguageStats { protected $noComplete = false; /// Overwritten from SpecialLanguageStats protected $noEmpty = true; - protected $names; - protected $translate; - /** @var int */ private $numberOfShownLanguages; @@ -149,7 +146,7 @@ class SpecialMessageGroupStats extends SpecialLanguageStats { sort( $languages ); $this->filterPriorityLangs( $languages, $this->target, $stats ); foreach ( $languages as $code ) { - if ( $table->isBlacklisted( $this->target, $code ) !== null ) { + if ( $table->isExcluded( $this->target, $code ) !== null ) { continue; } $out .= $this->makeRow( $code, $stats ); |