Merge pull request #417 from nyjt/patch-1

Mongoid compatibility improvement in belongs_to case
This commit is contained in:
José Valim 2012-01-25 06:30:18 -08:00
commit 75a6ff6b78
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ module SimpleForm
attribute = case reflection.macro
when :belongs_to
reflection.options[:foreign_key] || :"#{reflection.name}_id"
(reflection.respond_to?(:options) && reflection.options[:foreign_key]) || :"#{reflection.name}_id"
when :has_one
raise ":has_one associations are not supported by f.association"
else