summaryrefslogtreecommitdiffstats
path: root/Bugzilla/FlagType.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-01-31 17:25:07 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-31 17:25:07 +0100
commit0e5047a0f59e50741efaada8b3d13e9a86178bea (patch)
tree89899a40a2db1dead0356e791e85c26e03292b42 /Bugzilla/FlagType.pm
parentf595c7e8156343c75b64516d73f58d8e7e50e02d (diff)
parent0b14241a7c307a2619cb67cee42086b30fa03795 (diff)
downloadbugzilla-0e5047a0f59e50741efaada8b3d13e9a86178bea.tar.gz
bugzilla-0e5047a0f59e50741efaada8b3d13e9a86178bea.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/FlagType.pm')
-rw-r--r--Bugzilla/FlagType.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm
index b17e2771e..9541d9340 100644
--- a/Bugzilla/FlagType.pm
+++ b/Bugzilla/FlagType.pm
@@ -310,7 +310,7 @@ sub _check_cc_list {
# - do not contain any illegal character.
foreach my $address (@addresses) {
($address =~ /^[\w\.\+\-=]+@[\w\.\-]+\.[\w\-]+$/
- && $address !~ /[\\\(\)<>&,;:"\[\] \t\r\n]/)
+ && $address !~ /[\\\(\)<>&,;:"\[\] \t\r\n\P{ASCII}]/)
|| ThrowUserError('illegal_email_address',
{addr => $address, default => 1});
}