From: lpsolit%gmail.com <> Date: Sun, 6 Dec 2009 17:18:02 +0000 (+0000) Subject: Bug 369080: Add the possibility to split emails with the semicolon character - Patch... X-Git-Tag: bugzilla-3.5.3~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52d3817935a8b93048884bcdfe1c03822afd3efc;p=thirdparty%2Fbugzilla.git Bug 369080: Add the possibility to split emails with the semicolon character - Patch by Krzysztof Drewniak r/a=LpSolit --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 6a318c93f3..7c458388c5 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 {