diff options
author | lpsolit%gmail.com <> | 2009-12-06 18:18:02 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-12-06 18:18:02 +0100 |
commit | 52d3817935a8b93048884bcdfe1c03822afd3efc (patch) | |
tree | e06293e9865e50ec19358e70a6899bc43092c726 /Bugzilla | |
parent | bcbb3ba91f5dc4f13fbb0a49f8a5e441d686b34d (diff) | |
download | bugzilla-52d3817935a8b93048884bcdfe1c03822afd3efc.tar.gz bugzilla-52d3817935a8b93048884bcdfe1c03822afd3efc.tar.xz |
Bug 369080: Add the possibility to split emails with the semicolon character - Patch by Krzysztof Drewniak <krzysdrewniak@gmail.com> r/a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/User.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 6a318c93f..7c458388c 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1256,7 +1256,7 @@ sub match_field { # multi-field } elsif ($fields->{$field}->{'type'} eq 'multi') { - @queries = split(/[\s,]+/, $raw_field); + @queries = split(/[\s,;]+/, $raw_field); } else { |