aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model
diff options
context:
space:
mode:
authorAntonio Roberto <forevertonny@gmail.com>2011-12-16 17:17:14 -0200
committerAntonio Roberto <forevertonny@gmail.com>2011-12-16 17:17:14 -0200
commit66e747b461457b4f49d5b5d88334f5019bbfcc1e (patch)
tree59de1f17126e14e8b51a53c1edc1cbb6b20cc294 /activemodel/lib/active_model
parentf307f4d884be7d0dcef60df4636dbda7155b499d (diff)
downloadrails-66e747b461457b4f49d5b5d88334f5019bbfcc1e.tar.gz
rails-66e747b461457b4f49d5b5d88334f5019bbfcc1e.tar.bz2
rails-66e747b461457b4f49d5b5d88334f5019bbfcc1e.zip
Fixed bug when error message is an empty string.
Diffstat (limited to 'activemodel/lib/active_model')
-rw-r--r--activemodel/lib/active_model/errors.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb
index 8337b04c0d..aafd1c8a74 100644
--- a/activemodel/lib/active_model/errors.rb
+++ b/activemodel/lib/active_model/errors.rb
@@ -176,8 +176,9 @@ module ActiveModel
end
# Returns true if no errors are found, false otherwise.
+ # If the error message is a string it can be empty.
def empty?
- all? { |k, v| v && v.empty? }
+ all? { |k, v| v && v.empty? && !v.is_a?(String) }
end
alias_method :blank?, :empty?