mirror of https://github.com/rails/rails
add deprecation for the #concat helper's 2nd argument, which is no longer needed
This commit is contained in:
parent
2336430471
commit
f545e19692
|
@ -25,7 +25,11 @@ module ActionView
|
|||
# end
|
||||
# # will either display "Logged in!" or a login link
|
||||
# %>
|
||||
def concat(string)
|
||||
def concat(string, unused_binding = nil)
|
||||
if unused_binding
|
||||
ActiveSupport::Deprecation.warn("The binding argument of #concat is no longer needed. Please remove it from your views and helpers.")
|
||||
end
|
||||
|
||||
if output_buffer && string
|
||||
output_buffer << string
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue