summaryrefslogtreecommitdiffstats
path: root/lib/redmine/field_format.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine/field_format.rb')
-rw-r--r--lib/redmine/field_format.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/redmine/field_format.rb b/lib/redmine/field_format.rb
index d063d1ccf..1df164e0a 100644
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -269,15 +269,15 @@ module Redmine
# %m1%, %m2%... => capture groups matches of the custom field regexp if defined
def url_from_pattern(custom_field, value, customized)
url = custom_field.url_pattern.to_s.dup
- url.gsub!('%value%') {URI.encode value.to_s}
- url.gsub!('%id%') {URI.encode customized.id.to_s}
+ url.gsub!('%value%') {Addressable::URI.encode value.to_s}
+ url.gsub!('%id%') {Addressable::URI.encode customized.id.to_s}
url.gsub!('%project_id%') {
- URI.encode(
+ Addressable::URI.encode(
(customized.respond_to?(:project) ? customized.project.try(:id) : nil).to_s
)
}
url.gsub!('%project_identifier%') {
- URI.encode(
+ Addressable::URI.encode(
(customized.respond_to?(:project) ? customized.project.try(:identifier) : nil).to_s
)
}
@@ -285,7 +285,7 @@ module Redmine
url.gsub!(%r{%m(\d+)%}) do
m = $1.to_i
if matches ||= value.to_s.match(Regexp.new(custom_field.regexp))
- URI.encode matches[m].to_s
+ Addressable::URI.encode matches[m].to_s
end
end
end