From f816d4f3784409ff505f4f88ad46e7f7fb447a96 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 27 Jun 2007 19:12:52 +0000 Subject: [PATCH] Fixed: Long text custom fields displayed without line breaks Added wiki toolbar for issue notes git-svn-id: http://redmine.rubyforge.org/svn/trunk@576 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/show.rhtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 0bbc20c4..5ef8acf5 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -34,7 +34,7 @@ <% n = 0 for custom_value in @custom_values %> - <%= custom_value.custom_field.name %> :<%= h(show_value(custom_value)) %> + <%= custom_value.custom_field.name %> :<%= simple_format(h(show_value(custom_value))) %> <% n = n + 1 if (n > 1) n = 0 %> @@ -109,6 +109,7 @@ end %> <% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>

<%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %>

+ <%= wikitoolbar_for 'notes' %> <%= submit_tag l(:button_add) %> <% end %>