class ActionView::Helpers::Tags::Base
github.com/rails/rails/commit/c1a118a<br>This patch is needed since this Rails commit:
TODO: Find a better way to solve this issue!
def value
def value if @allow_method_names_outside_object object.send @method_name if object && object.respond_to?(@method_name, true) else object.send @method_name if object end end