diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-07-28 13:14:11 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-08-13 16:22:22 -0700 |
commit | bec59779326daa35aab483fa8b95c0f87440fede (patch) | |
tree | 925af7a1f03c8f548ac70ff99d4ec42a664f7fd5 /activerecord/lib | |
parent | 66fdfbc2d590672b2234358a8ab8bba608a192ca (diff) | |
download | rails-bec59779326daa35aab483fa8b95c0f87440fede.tar.gz rails-bec59779326daa35aab483fa8b95c0f87440fede.tar.bz2 rails-bec59779326daa35aab483fa8b95c0f87440fede.zip |
Revert "Merge pull request #2309 from smasry/master"
This reverts commit 9d396ee8195e31f646e0b89158ed96f4db4ab38f, reversing
changes made to fa2bfd832c1d1e997d93c2269a485cc74782c86d.
Reason: the change broke the build.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/relation/query_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb index 3a7b245c51..1654ae1eac 100644 --- a/activerecord/lib/active_record/relation/query_methods.rb +++ b/activerecord/lib/active_record/relation/query_methods.rb @@ -312,7 +312,7 @@ module ActiveRecord when String, Symbol o.to_s.split(',').collect do |s| s.strip! - (s if s =~ /\(/) || s.gsub!(/\sasc\Z/i, ' DESC') || s.gsub!(/\sdesc\Z/i, ' ASC') || s.concat(' DESC') + s.gsub!(/\sasc\Z/i, ' DESC') || s.gsub!(/\sdesc\Z/i, ' ASC') || s.concat(' DESC') end else o |