summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/models/query.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/query.rb b/app/models/query.rb
index d0a54d6c6..104b14e89 100644
--- a/app/models/query.rb
+++ b/app/models/query.rb
@@ -909,8 +909,8 @@ class Query < ActiveRecord::Base
# Returns a SQL LIKE statement with wildcards
def sql_contains(db_field, value, match=true)
- value = "'%#{self.class.connection.quote_string(value.to_s)}%'"
- Redmine::Database.like(db_field, value, :match => match)
+ queried_class.send :sanitize_sql_for_conditions,
+ [Redmine::Database.like(db_field, '?', :match => match), "%#{value}%"]
end
# Adds a filter for the given custom field