Commit 52d38179 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 369080: Add the possibility to split emails with the semicolon character -…

Bug 369080: Add the possibility to split emails with the semicolon character - Patch by Krzysztof Drewniak <krzysdrewniak@gmail.com> r/a=LpSolit
parent bcbb3ba9
...@@ -1256,7 +1256,7 @@ sub match_field { ...@@ -1256,7 +1256,7 @@ sub match_field {
# multi-field # multi-field
} }
elsif ($fields->{$field}->{'type'} eq 'multi') { elsif ($fields->{$field}->{'type'} eq 'multi') {
@queries = split(/[\s,]+/, $raw_field); @queries = split(/[\s,;]+/, $raw_field);
} }
else { else {
......
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