aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 0e1c28e330..1c063c003d 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -1094,7 +1094,7 @@ module ActiveRecord #:nodoc:
# Turns an +attribute+ that's currently true into false and vice versa. Returns self.
def toggle(attribute)
- self[attribute] = quote(!send("#{attribute}?", column_for_attribute(attribute)))
+ self[attribute] = !send("#{attribute}?")
self
end