fix % escaping
authorChristian Garbs <mitch@cgarbs.de>
Sun, 28 Dec 2008 12:45:57 +0000 (13:45 +0100)
committerChristian Garbs <mitch@cgarbs.de>
Sun, 28 Dec 2008 12:45:57 +0000 (13:45 +0100)
xmlrtorrent.pl

index 3a93181..6914eb4 100644 (file)
@@ -93,7 +93,7 @@ sub write_irssi {
     my $format = '%%mxmlrtorrent: %%n' . shift(@text);
 
     # escape % in parameters from irssi
-    @text = grep { s/%/%%/g } @text;
+    s/%/%%/g foreach @text;
 
     if (defined($output) and ref($output)) {
         $output->print(sprintf($format, @text), MSGLEVEL_CLIENTCRAP);