From cfc6c3ff36609642055cc5b317212df1675b70f4 Mon Sep 17 00:00:00 2001 From: Reed Loden Date: Mon, 29 Mar 2010 20:22:56 -0500 Subject: 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(-) (limited to 'Bugzilla/Bug.pm') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 2ce292edb..da5cf9285 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -2423,7 +2423,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; -- cgit v1.2.3-24-g4f1b