mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-11 13:15:20 +00:00
Fix rubocop offense (#35073).
git-svn-id: http://svn.redmine.org/redmine/trunk@21234 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5c7d43d36a
commit
a0ef175ffe
@ -1442,10 +1442,9 @@ class Query < ActiveRecord::Base
|
||||
suffix = '%' if options[:starts_with]
|
||||
prefix = suffix = '%' if prefix.nil? && suffix.nil?
|
||||
value = queried_class.sanitize_sql_like value
|
||||
queried_class.sanitize_sql_for_conditions([
|
||||
Redmine::Database.like(db_field, '?', :match => options[:match]),
|
||||
"#{prefix}#{value}#{suffix}"
|
||||
])
|
||||
queried_class.sanitize_sql_for_conditions(
|
||||
[Redmine::Database.like(db_field, '?', :match => options[:match]), "#{prefix}#{value}#{suffix}"]
|
||||
)
|
||||
end
|
||||
|
||||
# Adds a filter for the given custom field
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user