OSDN Git Service

Escape textarea content when editing a issue note.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 19 Dec 2008 08:10:35 +0000 (08:10 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 19 Dec 2008 08:10:35 +0000 (08:10 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2143 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/journals/_notes_form.rhtml

index 94c710e..6e6ad0f 100644 (file)
@@ -1,6 +1,6 @@
 <% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %>
-    <%= text_area_tag :notes, @journal.notes, :class => 'wiki-edit', 
-                                              :rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
+    <%= text_area_tag :notes, h(@journal.notes), :class => 'wiki-edit', 
+                                                 :rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
     <%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
     <p><%= submit_tag l(:button_save) %>
     <%= link_to l(:button_cancel), '#', :onclick => "Element.remove('journal-#{@journal.id}-form'); " +