Index: app/views/news/_news.rhtml =================================================================== --- app/views/news/_news.rhtml (revision 3084) +++ app/views/news/_news.rhtml (working copy) @@ -2,5 +2,5 @@ <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %> <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>
-<% unless news.summary.blank? %><%=h news.summary %>
<% end %> +<% unless news.summary.blank? %><%= textilizable(news.summary) %>
<% end %> <%= authoring news.created_on, news.author %>

Index: app/views/news/show.rhtml =================================================================== --- app/views/news/show.rhtml (revision 3084) +++ app/views/news/show.rhtml (working copy) @@ -27,7 +27,7 @@ <% end %> -

<% unless @news.summary.blank? %><%=h @news.summary %>
<% end %> +

<% unless @news.summary.blank? %><%= textilizable(@news.summary) %>
<% end %> <%= authoring @news.created_on, @news.author %>

<%= textilizable(@news.description) %>