0

我在拨打电话的线路上收到此错误recaptcha_tags

<%= recaptcha_tags( :public_key => 'XXXXXXYYYYYYYZZZ-ZXYXXZYZ' , :display=>{:theme=>"white" }) %>

我正在与rails 2.3.10

我该如何解决这个错误?

非常感谢。

4

2 回答 2

1

在 Rails 2.3.x 中,html_safe 被定义为 String 类方法:

activesupport/lib/active_support/core_ext/string/output_safety.rb

确保您拥有正确的 active_support 版本(与您的 rails 版本匹配的版本)。

于 2011-06-28T23:30:34.900 回答
0

好吧,我做了这里指定的事情https://github.com/ambethia/recaptcha/issues/30并为我完美地解决了

Changing client_helper.rb line 39 to:
return (html.respond_to?(:html_safe) && html.html_safe) || html
fixes the issue.
于 2011-06-30T15:18:16.640 回答