From: Kirill Miazine Date: Sun, 2 Jul 2017 21:13:44 +0000 (+0200) Subject: Another instance of virtual bug that would strip plus from branch names. X-Git-Url: https://git.exim.org/buildfarm-server.git/commitdiff_plain/5b58768b0c4b4eb6f147bda43d92a9eb9e52ac33 Another instance of virtual bug that would strip plus from branch names. --- diff --git a/cgi-bin/show_failures.pl b/cgi-bin/show_failures.pl index ffdcef9..5b14ccc 100755 --- a/cgi-bin/show_failures.pl +++ b/cgi-bin/show_failures.pl @@ -23,7 +23,7 @@ my @members = grep {$_ ne "" } $query->multi_param('member'); map { s/[^a-zA-Z0-9_ -]//g; } @members; my $max_days = $query->param('max_days') + 0 || 10; my @branches = grep {$_ ne "" } $query->multi_param('branch'); -map { s/[^a-zA-Z0-9_ .-]//g; } @branches; +map { s/[^a-zA-Z0-9+_ .-]//g; } @branches; my @stages = grep {$_ ne "" } $query->multi_param('stage'); map { s/[^a-zA-Z0-9_ :-]//g; } @stages;