diff options
Diffstat (limited to 'app/views/news/_news.html.erb')
-rw-r--r-- | app/views/news/_news.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/news/_news.html.erb b/app/views/news/_news.html.erb index cc83d2a9e..391d9a900 100644 --- a/app/views/news/_news.html.erb +++ b/app/views/news/_news.html.erb @@ -1,6 +1,6 @@ <p><%= link_to_project(news.project) + ': ' unless @project %> -<%= link_to h(news.title), news_path(news) %> +<%= link_to news.title, news_path(news) %> <% if news.comments_count > 0 %><span class="comments">(<%= l(:label_x_comments, :count => news.comments_count) %>)</span><% end %> <br /> -<% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %> +<% unless news.summary.blank? %><span class="summary"><%= news.summary %></span><br /><% end %> <span class="author"><%= authoring news.created_on, news.author %></span></p> |