summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/messages/_form.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/messages/_form.html.erb b/app/views/messages/_form.html.erb
index 482837e81..f7cd8e367 100644
--- a/app/views/messages/_form.html.erb
+++ b/app/views/messages/_form.html.erb
@@ -8,10 +8,10 @@
<% unless replying %>
<% if @message.safe_attribute? 'sticky' %>
- <label><%= f.check_box :sticky %><%= l(:label_board_sticky) %></label>
+ <%= f.check_box :sticky %> <%= label_tag 'message_sticky', l(:label_board_sticky) %>
<% end %>
<% if @message.safe_attribute? 'locked' %>
- <label><%= f.check_box :locked %><%= l(:label_board_locked) %></label>
+ <%= f.check_box :locked %> <%= label_tag 'message_locked', l(:label_board_locked) %>
<% end %>
<% end %>
</p>