From: Reed Loden Date: Tue, 30 Mar 2010 01:23:32 +0000 (-0500) Subject: Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive X-Git-Tag: bugzilla-3.6~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c4f59fbf2cee263b3d4d209cc902dd3463f554a;p=thirdparty%2Fbugzilla.git Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive [r=mkanat over IRC] --- diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 6336dbcbc1..95d1c28112 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -2401,7 +2401,7 @@ sub add_see_also { } } # Google Code URLs - elsif ($uri->authority =~ /^code.google.com$/) { + elsif ($uri->authority =~ /^code.google.com$/i) { # Google Code URLs only have one form: # http(s)://code.google.com/p/PROJECT_NAME/issues/detail?id=1234 my $project_name;