aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xactiverecord/lib/active_record/base.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 56ed851d6a..e8793c3d2d 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -867,12 +867,12 @@ module ActiveRecord #:nodoc:
arel = arel.where(Arel::SqlLiteral.new(conditions))
end
- if options.has_key?(:limit) || (scope && scope[:limit])
+ arel = if options.has_key?(:limit) || (scope && scope[:limit])
# Only take order from scope if limit is also provided by scope, this
# is useful for updating a has_many association with a limit.
- arel = arel.order(construct_order(options[:order], scope)).take(construct_limit(options, scope))
+ arel.order(construct_order(options[:order], scope)).take(construct_limit(options, scope))
else
- arel = arel.order(construct_order(options[:order], nil))
+ arel.order(construct_order(options[:order], nil))
end
arel.update(sanitize_sql_for_assignment(updates))