Bug 772620: Ignore empty strings in the CC list
r=dkl a=LpSolit git-svn-id: svn://10.0.0.236/trunk@264171 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
d40bf68cd1
commit
0db06b10f0
@ -1 +1 @@
|
|||||||
8364
|
8365
|
||||||
@ -1541,6 +1541,8 @@ sub match_field {
|
|||||||
my @logins;
|
my @logins;
|
||||||
for my $query (@queries) {
|
for my $query (@queries) {
|
||||||
$query = trim($query);
|
$query = trim($query);
|
||||||
|
next if $query eq '';
|
||||||
|
|
||||||
my $users = match(
|
my $users = match(
|
||||||
$query, # match string
|
$query, # match string
|
||||||
$limit, # match limit
|
$limit, # match limit
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user