diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-07-29 09:32:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-07-29 09:32:58 +0000 |
commit | 310a0f924aa0092228a173cc71864af4ce574f1f (patch) | |
tree | 9885aa2d18d4cf99f6d00100e260bbe56cf255f5 /redmine/app/views/news/show.rhtml | |
parent | 7e57db1edbad635fcbe1e3ae3294d24e1a43046f (diff) | |
download | redmine-310a0f924aa0092228a173cc71864af4ce574f1f.tar.gz redmine-310a0f924aa0092228a173cc71864af4ce574f1f.zip |
0.3 unstable
git-svn-id: http://redmine.rubyforge.org/svn/trunk@12 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'redmine/app/views/news/show.rhtml')
-rw-r--r-- | redmine/app/views/news/show.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redmine/app/views/news/show.rhtml b/redmine/app/views/news/show.rhtml index d6773cda9..f571b54ca 100644 --- a/redmine/app/views/news/show.rhtml +++ b/redmine/app/views/news/show.rhtml @@ -1,10 +1,10 @@ <h2><%= @news.title %></h2>
<p>
-<b><%=_('Summary')%></b>: <%= @news.shortdescr %><br />
+<b><%=_('Summary')%></b>: <%= @news.summary %><br />
<b><%=_('By')%></b>: <%= @news.author.display_name %><br />
<b><%=_('Date')%></b>: <%= format_time(@news.created_on) %>
</p>
-<%= simple_format auto_link @news.descr %> +<%= simple_format auto_link @news.description %> |