diff --git a/lib/redmine/field_format.rb b/lib/redmine/field_format.rb
index 9798300..dcc2604 100644
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -15,6 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+require 'uri'
+
module Redmine
module FieldFormat
def self.add(name, klass)
@@ -186,7 +188,7 @@ module Redmine
end
end
end
- url
+ URI.encode(url)
end
protected :url_from_pattern
diff --git a/test/unit/lib/redmine/field_format/field_format_test.rb b/test/unit/lib/redmine/field_format/field_format_test.rb
index 9864d0c..08e167e 100644
--- a/test/unit/lib/redmine/field_format/field_format_test.rb
+++ b/test/unit/lib/redmine/field_format/field_format_test.rb
@@ -59,4 +59,12 @@ class Redmine::FieldFormatTest < ActionView::TestCase
assert_equal "bar", field.format.formatted_custom_value(self, custom_value, false)
assert_equal 'bar', field.format.formatted_custom_value(self, custom_value, true)
end
+
+ def test_text_field_with_url_pattern_and_value_containing_a_space_should_format_as_link
+ field = IssueCustomField.new(:field_format => 'string', :url_pattern => 'http://foo/%value%')
+ custom_value = CustomValue.new(:custom_field => field, :customized => Issue.new, :value => "foo bar")
+
+ assert_equal "foo bar", field.format.formatted_custom_value(self, custom_value, false)
+ assert_equal 'foo bar', field.format.formatted_custom_value(self, custom_value, true)
+ end
end