From: Jean-Philippe Lang Date: Sun, 20 Feb 2011 14:26:23 +0000 (+0000) Subject: Do not keep illegitimate custom_values when setting custom_field_values (#7604). X-Git-Tag: 1.2.0~931 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e29b99c67e44041ab68e1397c2bf49462f319465;p=redmine.git Do not keep illegitimate custom_values when setting custom_field_values (#7604). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4891 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/vendor/plugins/acts_as_customizable/lib/acts_as_customizable.rb b/vendor/plugins/acts_as_customizable/lib/acts_as_customizable.rb index 9ed9fe376..b99c38c4b 100644 --- a/vendor/plugins/acts_as_customizable/lib/acts_as_customizable.rb +++ b/vendor/plugins/acts_as_customizable/lib/acts_as_customizable.rb @@ -71,6 +71,7 @@ module Redmine custom_field_values.each do |custom_value| custom_value.value = values[custom_value.custom_field_id.to_s] if values.has_key?(custom_value.custom_field_id.to_s) end if values.is_a?(Hash) + self.custom_values = custom_field_values end def custom_field_values