]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 369080: Add the possibility to split emails with the semicolon character - Patch...
authorlpsolit%gmail.com <>
Sun, 6 Dec 2009 17:18:02 +0000 (17:18 +0000)
committerlpsolit%gmail.com <>
Sun, 6 Dec 2009 17:18:02 +0000 (17:18 +0000)
Bugzilla/User.pm

index 6a318c93f3c7669d6074d80bdf2add31e8214c4b..7c458388c56b4ef4348421a021a097ca23c27148 100644 (file)
@@ -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 {