Commit 6719d280 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 772620: Ignore empty strings in the CC list

r=dkl a=LpSolit
parent b558c356
......@@ -1541,6 +1541,8 @@ sub match_field {
my @logins;
for my $query (@queries) {
$query = trim($query);
next if $query eq '';
my $users = match(
$query, # match string
$limit, # match limit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment