mirror of
https://github.com/redmine/redmine.git
synced 2026-02-02 21:00:01 +01:00
Don't compare LOWER() with #downcase.
git-svn-id: http://svn.redmine.org/redmine/trunk@16480 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -103,11 +103,9 @@ class Project < ActiveRecord::Base
|
||||
where(Project.allowed_to_condition(user, permission, *args))
|
||||
}
|
||||
scope :like, lambda {|arg|
|
||||
if arg.blank?
|
||||
where(nil)
|
||||
else
|
||||
pattern = "%#{arg.to_s.strip.downcase}%"
|
||||
where("LOWER(identifier) LIKE :p OR LOWER(name) LIKE :p", :p => pattern)
|
||||
if arg.present?
|
||||
pattern = "%#{arg.to_s.strip}%"
|
||||
where("LOWER(identifier) LIKE LOWER(:p) OR LOWER(name) LIKE LOWER(:p)", :p => pattern)
|
||||
end
|
||||
}
|
||||
scope :sorted, lambda {order(:lft)}
|
||||
|
||||
Reference in New Issue
Block a user