diff options
author | Reed Loden <reed@reedloden.com> | 2010-03-30 03:22:56 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-03-30 03:22:56 +0200 |
commit | cfc6c3ff36609642055cc5b317212df1675b70f4 (patch) | |
tree | 5d56bd276be03203f3e9c890db1158fc5605a77b | |
parent | 64ac9b3338c40d88fb1517f259e5f8313553d646 (diff) | |
download | bugzilla-cfc6c3ff36609642055cc5b317212df1675b70f4.tar.gz bugzilla-cfc6c3ff36609642055cc5b317212df1675b70f4.tar.xz |
Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive
[r=mkanat over IRC]
-rw-r--r-- | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; |