summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config
diff options
context:
space:
mode:
authorHugo Seabrook <hugo.seabrook@gmail.com>2013-01-02 00:25:33 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-01-02 00:25:33 +0100
commit70530a5c592bf13de37ac895c71a9ce299170870 (patch)
tree64c908c7abfc65bdc518d2cd38a49dc958a47385 /Bugzilla/Config
parent59460995ee7a5634fdd27765b75e79053eb43c1a (diff)
downloadbugzilla-70530a5c592bf13de37ac895c71a9ce299170870.tar.gz
bugzilla-70530a5c592bf13de37ac895c71a9ce299170870.tar.xz
Bug 415658: Allow apostrophes in email addresses
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r--Bugzilla/Config/Auth.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Auth.pm b/Bugzilla/Config/Auth.pm
index 289536bbd..699881122 100644
--- a/Bugzilla/Config/Auth.pm
+++ b/Bugzilla/Config/Auth.pm
@@ -82,7 +82,7 @@ sub get_param_list {
{
name => 'emailregexp',
type => 't',
- default => q:^[\\w\\.\\+\\-=]+@[\\w\\.\\-]+\\.[\\w\\-]+$:,
+ default => q:^[\\w\\.\\+\\-=']+@[\\w\\.\\-]+\\.[\\w\\-]+$:,
checker => \&check_regexp
},