From 8c4f59fbf2cee263b3d4d209cc902dd3463f554a Mon Sep 17 00:00:00 2001 From: Reed Loden Date: Mon, 29 Mar 2010 20:23:32 -0500 Subject: [PATCH] Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive [r=mkanat over IRC] --- Bugzilla/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3