summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_edit.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-11-27 13:31:24 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-11-27 13:31:24 +0000
commit088ab2e68689bd63a28b1caee277739a8b923c91 (patch)
treea6c862d6ad68fd4b56063ac29b3e95fe41a12d11 /app/views/issues/_edit.html.erb
parent391b5ec6ef2b586beeb9552358c5c3fbb50725d4 (diff)
downloadredmine-088ab2e68689bd63a28b1caee277739a8b923c91.tar.gz
redmine-088ab2e68689bd63a28b1caee277739a8b923c91.zip
Fixed that the label element may contain at most one input.
git-svn-id: http://svn.redmine.org/redmine/trunk@12346 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_edit.html.erb')
-rw-r--r--app/views/issues/_edit.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb
index f2052a27a..259df7357 100644
--- a/app/views/issues/_edit.html.erb
+++ b/app/views/issues/_edit.html.erb
@@ -31,7 +31,7 @@
<%= wikitoolbar_for 'issue_notes' %>
<% if @issue.safe_attribute? 'private_notes' %>
- <label for="issue_private_notes"><%= f.check_box :private_notes, :no_label => true %> <%= l(:field_private_notes) %></label>
+ <%= f.check_box :private_notes, :no_label => true %> <label for="issue_private_notes"><%= l(:field_private_notes) %></label>
<% end %>
<%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>