Hi
HOBO 0.8.5 + RAILS 2.2.2
To use "form_for" helper I had to modiffy the following Rails method:
----
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.", caller)
end
output_buffer << string
end
-----
to:
----
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.", caller)
end
if output_buffer && string
output_buffer << string
else
string
end
end
----
Any one had that problem too? Do I have sth wrong with my application?
cheers
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Hobo
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/hobousers?hl=en
-~----------~----~----~----~------~----~------~--~---