summaryrefslogtreecommitdiff
path: root/lib/uri/mailto.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/uri/mailto.rb')
-rw-r--r--lib/uri/mailto.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/uri/mailto.rb b/lib/uri/mailto.rb
index f01673fd63..3f2439ed34 100644
--- a/lib/uri/mailto.rb
+++ b/lib/uri/mailto.rb
@@ -59,6 +59,10 @@ module URI
\\?
(#{HEADER_PATTERN}(?:\\&#{HEADER_PATTERN})*) (?# 2: headers)
)?
+ (?:
+ \\#
+ (#{PATTERN::FRAGMENT}) (?# 3: fragment)
+ )?
\\z
", Regexp::EXTENDED, 'N').freeze
@@ -228,6 +232,11 @@ module URI
'?' + @headers.collect{|x| x.join('=')}.join('&')
else
''
+ end +
+ if @fragment
+ '#' + @fragment
+ else
+ ''
end
end