summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-20 06:53:15 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-20 06:53:15 +0000
commita28aa2e83f261d4504b7cd97bfb2cbb8ad500ddd (patch)
tree60fd99b0ef894dcf2998c9b8fd86a8479af65c0e /lib
parenta970118755083fa4079fc9ed98e6aa441894b686 (diff)
downloadredmine-a28aa2e83f261d4504b7cd97bfb2cbb8ad500ddd.tar.gz
redmine-a28aa2e83f261d4504b7cd97bfb2cbb8ad500ddd.zip
Rails3: use String#html_safe at lib/redmine/helpers/diff.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6472 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/helpers/diff.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/helpers/diff.rb b/lib/redmine/helpers/diff.rb
index ca94734a3..ac38deea8 100644
--- a/lib/redmine/helpers/diff.rb
+++ b/lib/redmine/helpers/diff.rb
@@ -65,7 +65,7 @@ module Redmine
words_del = 0
end
end
- words.join(' ')
+ words.join(' ').html_safe
end
end
end