Explorar el Código

Remove duplicate "is_nick" check

sbingner hace 23 años
padre
commit
e63a30a46f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      modules/Pisg/HTMLGenerator.pm

+ 1 - 1
modules/Pisg/HTMLGenerator.pm

@@ -1608,7 +1608,7 @@ sub _mostusedword
             # Skip nicks.  It's far more efficient to do this here than when
             # @popular is created.
             next if is_ignored($popular[$i]);
-            next if is_nick($popular[$i]);
+
             my $a = $count + 1;
             my $popular = htmlentities($popular[$i]);
             my $wordcount = $self->{stats}->{wordcounts}{$popular[$i]};