diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index c4df6b1b3..c6f9efa9f 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -938,16 +938,6 @@ module ApplicationHelper content_tag("label", label_text) end - def labelled_tabular_form_for(*args, &proc) - ActiveSupport::Deprecation.warn "ApplicationHelper#labelled_tabular_form_for is deprecated and will be removed in Redmine 1.5. Use #labelled_form_for instead." - args << {} unless args.last.is_a?(Hash) - options = args.last - options[:html] ||= {} - options[:html][:class] = 'tabular' unless options[:html].has_key?(:class) - options.merge!({:builder => Redmine::Views::LabelledFormBuilder}) - form_for(*args, &proc) - end - def labelled_form_for(*args, &proc) args << {} unless args.last.is_a?(Hash) options = args.last