summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>2010-10-11 20:34:33 +0000
committerJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>2010-10-11 20:34:33 +0000
commit71dd4b8a7db0208be22175a69fb71909933f4c57 (patch)
tree93eb0897726a83cec4207c5cecc29acf46a0ca8c
parent435c90eb478e705dff9ea239fd280a958a4287e3 (diff)
downloadredmine-71dd4b8a7db0208be22175a69fb71909933f4c57.tar.gz
redmine-71dd4b8a7db0208be22175a69fb71909933f4c57.zip
Fixed bad markup in users/general partial
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4249 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/users/_general.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/_general.rhtml b/app/views/users/_general.rhtml
index a08b3cee3..7e90ab2c2 100644
--- a/app/views/users/_general.rhtml
+++ b/app/views/users/_general.rhtml
@@ -1,7 +1,7 @@
<% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "update", :tab => nil }, :html => { :method => :put, :class => nil } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
<% if @user.active? -%>
- <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label>
+ <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
<% end -%>
<p><%= submit_tag l(:button_save) %></p>
<% end %>