]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive
authorReed Loden <reed@reedloden.com>
Tue, 30 Mar 2010 01:22:56 +0000 (20:22 -0500)
committerReed Loden <reed@reedloden.com>
Tue, 30 Mar 2010 01:22:56 +0000 (20:22 -0500)
[r=mkanat over IRC]

Bugzilla/Bug.pm

index 2ce292edbb3c51a99edb6e646d172b8f4ba4186a..da5cf928526364809273fec162a519454ee62db2 100644 (file)
@@ -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;