Actions
Bug #3225
closedlib/uri/mailto.rb slightly wrong regexp
Description
=begin
Looking for example of the 3rd parameter of value 'N' for Regexp.new, I noticed in lib/uri/mailto.rb
HEADER_REGEXP = Regexp.new(HEADER_PATTERN, 'N').freeze
Unless I'm mistaken, the 'N' in second position is simply a flag for case insensitivity, but HEADER_PATTERN already is, so it should either be
HEADER_REGEXP = Regexp.new(HEADER_PATTERN).freeze
or
HEADER_REGEXP = Regexp.new(HEADER_PATTERN, nil, 'N').freeze
but I don't know which one...
=end
Actions
Like0
Like0Like0Like0