summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorReed Loden <reed@reedloden.com>2010-03-30 03:22:56 +0200
committerReed Loden <reed@reedloden.com>2010-03-30 03:22:56 +0200
commitcfc6c3ff36609642055cc5b317212df1675b70f4 (patch)
tree5d56bd276be03203f3e9c890db1158fc5605a77b /Bugzilla/Bug.pm
parent64ac9b3338c40d88fb1517f259e5f8313553d646 (diff)
downloadbugzilla-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]
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm2
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;