]> source.dussan.org Git - redmine.git/commitdiff
#safe_attribute? not defined in 1.3-stable.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Apr 2012 13:22:27 +0000 (13:22 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Apr 2012 13:22:27 +0000 (13:22 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.3-stable@9357 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/messages/_form.html.erb

index 916f460e14f64b11c28f2fe2ef95696415c314ad..b3b0e130efa0b31f47601d0e42238d4a16b9b520 100644 (file)
@@ -6,17 +6,13 @@
 <p><label for="message_subject"><%= l(:field_subject) %></label><br />
 <%= f.text_field :subject, :size => 120, :id => "message_subject" %>
 
-<% unless replying %>
-  <% if @message.safe_attribute? 'sticky' %>
+<% if !replying && User.current.allowed_to?(:edit_messages, @project) %>
     <label><%= f.check_box :sticky %><%= l(:label_board_sticky) %></label>
-  <% end %>
-  <% if @message.safe_attribute? 'locked' %>
     <label><%= f.check_box :locked %><%= l(:label_board_locked) %></label>
-  <% end %>
 <% end %>
 </p>
 
-<% if !replying && !@message.new_record? && @message.safe_attribute?('board_id') %>
+<% if !replying && !@message.new_record? && User.current.allowed_to?(:edit_messages, @project) %>
   <p><label><%= l(:label_board) %></label><br />
   <%= f.select :board_id, @project.boards.collect {|b| [b.name, b.id]} %></p>
 <% end %>