aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/url_helper.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2010-09-05 23:45:51 -0300
committerJosé Valim <jose.valim@gmail.com>2010-09-06 13:42:46 +0200
commitc915ddd38642333cd0f28d188c5d7c51ba517c03 (patch)
treefe66f6aa6e2403e1dbe2955465f9807a84ef54c8 /actionpack/lib/action_view/helpers/url_helper.rb
parent022fd876bb30f0e46b694aefdf1fd5e15f018ab8 (diff)
downloadrails-c915ddd38642333cd0f28d188c5d7c51ba517c03.tar.gz
rails-c915ddd38642333cd0f28d188c5d7c51ba517c03.tar.bz2
rails-c915ddd38642333cd0f28d188c5d7c51ba517c03.zip
Start cleanup of deprecations in ActionView
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionpack/lib/action_view/helpers/url_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index 555be6ed2b..f8147840ed 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -268,7 +268,7 @@ module ActionView
# The +options+ hash accepts the same options as url_for.
#
# There are a few special +html_options+:
- # * <tt>:method</tt> - Symbol of HTTP verb. Supported verbs are <tt>:post</tt>, <tt>:get</tt>,
+ # * <tt>:method</tt> - Symbol of HTTP verb. Supported verbs are <tt>:post</tt>, <tt>:get</tt>,
# <tt>:delete</tt> and <tt>:put</tt>. By default it will be <tt>:post</tt>.
# * <tt>:disabled</tt> - If set to true, it will generate a disabled button.
# * <tt>:confirm</tt> - This will use the unobtrusive JavaScript driver to
@@ -594,11 +594,6 @@ module ActionView
end
confirm = html_options.delete("confirm")
-
- if html_options.key?("popup")
- ActiveSupport::Deprecation.warn(":popup has been deprecated", caller)
- end
-
method, href = html_options.delete("method"), html_options['href']
add_confirm_to_attributes!(html_options, confirm) if confirm