diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-06 12:47:20 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-06 12:47:20 +0000 |
commit | d7c015a884808343ff7cdf8f305b54b6c7ce5037 (patch) | |
tree | bdb84c0ab9243c35b015cf1050803639e36961c3 /app/views/news | |
parent | 8ed55e8d7ac953b2f057a160726c1e19fce8c1de (diff) | |
download | redmine-d7c015a884808343ff7cdf8f305b54b6c7ce5037.tar.gz redmine-d7c015a884808343ff7cdf8f305b54b6c7ce5037.zip |
removed "add a comment" h3
git-svn-id: http://redmine.rubyforge.org/svn/trunk@153 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/news')
-rw-r--r-- | app/views/news/show.rhtml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml index bffefa769..03245f2ad 100644 --- a/app/views/news/show.rhtml +++ b/app/views/news/show.rhtml @@ -24,10 +24,9 @@ </div>
<% if authorize_for 'news', 'add_comment' %>
-<h3><%= l(:label_comment_add) %></h3>
<%= start_form_tag :action => 'add_comment', :id => @news %>
<%= error_messages_for 'comment' %>
-<p><label for="comment_comment"><%= l(:field_comment) %></label><br />
+<p><label for="comment_comment"><%= l(:label_comment_add) %></label><br />
<%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p>
<%= submit_tag l(:button_add) %>
<%= end_form_tag %>
|