diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-12 22:57:20 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-12 22:57:20 +0000 |
commit | 86d756d22d6c191920970165d2dc40d1e823351d (patch) | |
tree | 142ee81c5f27eb677eb6a026618d522627848466 | |
parent | ab4ff48abc9b2402c2dc24805fd0d56b871fa5fe (diff) | |
download | redmine-86d756d22d6c191920970165d2dc40d1e823351d.tar.gz redmine-86d756d22d6c191920970165d2dc40d1e823351d.zip |
News comments are now textilized.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@986 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/news/show.rhtml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml index e4d7da4db..2b71c48ad 100644 --- a/app/views/news/show.rhtml +++ b/app/views/news/show.rhtml @@ -30,16 +30,17 @@ <div class="contextual"> <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> </div> - <%= simple_format(auto_link(h(comment.comments)))%> + <%= textilizable(comment.comments) %> <% end if @news.comments_count > 0 %> </div> <% if authorize_for 'news', 'add_comment' %> <p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p> <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %> -<%= text_area 'comment', 'comments', :cols => 60, :rows => 6 %> +<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %> +<%= wikitoolbar_for 'comment_comments' %> <p><%= submit_tag l(:button_add) %></p> <% end %> <% end %> -<% set_html_title h(@news.title) -%> +<% set_html_title(h(@news.title)) -%> |