Преглед изворни кода

Fix this bug:
http://sourceforge.net/tracker/index.php?func=detail&aid=481117&group_id=31862&atid=403711

Morten Brix Pedersen пре 25 година
родитељ
комит
20c83f1d42
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      modules/Pisg/Parser/Logfile.pm

+ 2 - 2
modules/Pisg/Parser/Logfile.pm

@@ -447,8 +447,8 @@ sub _parse_words
         # Also ignore stuff from URLs.
         # Also ignore stuff from URLs.
         next if ($word =~ m{https?|^//});
         next if ($word =~ m{https?|^//});
 
 
-        $stats->{wordcounts}{lc($word)}++;
-        $stats->{wordnicks}{lc($word)} = $nick;
+        $stats->{wordcounts}{$word}++;
+        $stats->{wordnicks}{$word} = $nick;
     }
     }
 }
 }