diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-24 10:42:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-24 10:42:37 +0000 |
commit | eba4efc9d0ad6222818a32a5bac2190cef0d45b0 (patch) | |
tree | ac6a503066bb41b16cd833dc23e47b2fb0613695 /app/views/auth_sources | |
parent | b7d8913459ae1692fb1750ff7c14ea42ee230598 (diff) | |
download | redmine-eba4efc9d0ad6222818a32a5bac2190cef0d45b0.tar.gz redmine-eba4efc9d0ad6222818a32a5bac2190cef0d45b0.zip |
Missing labels on auth_source edit form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11079 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r-- | app/views/auth_sources/edit.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth_sources/edit.html.erb b/app/views/auth_sources/edit.html.erb index b84d60053..aee3baf56 100644 --- a/app/views/auth_sources/edit.html.erb +++ b/app/views/auth_sources/edit.html.erb @@ -1,6 +1,6 @@ <h2><%=l(:label_auth_source)%> (<%= h(@auth_source.auth_method_name) %>)</h2> -<%= form_for @auth_source, :as => :auth_source, :url => auth_source_path(@auth_source), :html => {:id => 'auth_source_form'} do |f| %> +<%= labelled_form_for @auth_source, :as => :auth_source, :url => auth_source_path(@auth_source), :html => {:id => 'auth_source_form'} do |f| %> <%= render :partial => auth_source_partial_name(@auth_source), :locals => { :f => f } %> <%= submit_tag l(:button_save) %> <% end %> |