]> source.dussan.org Git - redmine.git/commitdiff
Code cleanup.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 13 Nov 2012 22:03:42 +0000 (22:03 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 13 Nov 2012 22:03:42 +0000 (22:03 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10802 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/principal.rb

index 90b56b6a1cc530c27674250051c2b4b08de1704f..8e7139c357282a54f3ee5c685b86ec91e0d8f791 100644 (file)
@@ -27,10 +27,10 @@ class Principal < ActiveRecord::Base
   scope :active, :conditions => "#{Principal.table_name}.status = 1"
 
   scope :like, lambda {|q|
+    q = q.to_s
     if q.blank?
-      {}
+      where({})
     else
-      q = q.to_s
       pattern = "%#{q}%"
       sql = "LOWER(login) LIKE LOWER(:p) OR LOWER(firstname) LIKE LOWER(:p) OR LOWER(lastname) LIKE LOWER(:p) OR LOWER(mail) LIKE LOWER(:p)"
       params = {:p => pattern}
@@ -39,7 +39,7 @@ class Principal < ActiveRecord::Base
         sql << " OR (LOWER(firstname) LIKE LOWER(:a) AND LOWER(lastname) LIKE LOWER(:b)) OR (LOWER(firstname) LIKE LOWER(:b) AND LOWER(lastname) LIKE LOWER(:a))"
         params.merge!(:a => a, :b => b)
       end
-      {:conditions => [sql, params]}
+      where(sql, params)
     end
   }