Commit cfc6c3ff authored by Reed Loden's avatar Reed Loden

Follow-up to bug 533121 -- make regex for matching "code.google.com" case-insensitive

[r=mkanat over IRC]
parent 64ac9b33
...@@ -2423,7 +2423,7 @@ sub add_see_also { ...@@ -2423,7 +2423,7 @@ sub add_see_also {
} }
} }
# Google Code URLs # Google Code URLs
elsif ($uri->authority =~ /^code.google.com$/) { elsif ($uri->authority =~ /^code.google.com$/i) {
# Google Code URLs only have one form: # Google Code URLs only have one form:
# http(s)://code.google.com/p/PROJECT_NAME/issues/detail?id=1234 # http(s)://code.google.com/p/PROJECT_NAME/issues/detail?id=1234
my $project_name; my $project_name;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment