diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 12:10:50 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 12:10:50 +0000 |
commit | 5d8200b9fc55d740b390fae89839d23662adcbb2 (patch) | |
tree | f10093ca98b0fbbddc492079d6f90524ad114bad /app/views/news | |
parent | 18255881ca6199af20fa516305de06a89e057fa7 (diff) | |
download | redmine-5d8200b9fc55d740b390fae89839d23662adcbb2.tar.gz redmine-5d8200b9fc55d740b390fae89839d23662adcbb2.zip |
Added missing parentheses on news/show and removed useless call to auto_link
git-svn-id: http://redmine.rubyforge.org/svn/trunk@455 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/news')
-rw-r--r-- | app/views/news/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml index d1c144323..024bd00fd 100644 --- a/app/views/news/show.rhtml +++ b/app/views/news/show.rhtml @@ -8,7 +8,7 @@ <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %> <%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p> <br /> -<%= textilizable auto_link @news.description %> +<%= textilizable(@news.description) %> <br /> <div id="comments" style="margin-bottom:16px;"> |