]> 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:23:32 +0000 (20:23 -0500)
committerReed Loden <reed@reedloden.com>
Tue, 30 Mar 2010 01:23:32 +0000 (20:23 -0500)
[r=mkanat over IRC]

Bugzilla/Bug.pm

index 6336dbcbc176b660400f1bc8ec818d2a17fcd5ee..95d1c281125918362149c1d14d906ad15c52cd58 100644 (file)
@@ -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;