]> source.dussan.org Git - redmine.git/commitdiff
Change default operator for text format custom fields from "is" to "contains" (#28660).
authorGo MAEDA <maeda@farend.jp>
Sat, 12 May 2018 05:42:27 +0000 (05:42 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 12 May 2018 05:42:27 +0000 (05:42 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@17331 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/query.rb

index 85de2f1a9f5fe082028b2723cac92c5f9852cf16..f78dd79d3b1e0560359e7e4b368b785d7fd02b39 100644 (file)
@@ -272,7 +272,7 @@ class Query < ActiveRecord::Base
     :list_subprojects => [ "*", "!*", "=", "!" ],
     :date => [ "=", ">=", "<=", "><", "<t+", ">t+", "><t+", "t+", "t", "ld", "w", "lw", "l2w", "m", "lm", "y", ">t-", "<t-", "><t-", "t-", "!*", "*" ],
     :date_past => [ "=", ">=", "<=", "><", ">t-", "<t-", "><t-", "t-", "t", "ld", "w", "lw", "l2w", "m", "lm", "y", "!*", "*" ],
-    :string => [ "=", "~", "!", "!~", "!*", "*" ],
+    :string => [ "~", "=", "!~", "!", "!*", "*" ],
     :text => [  "~", "!~", "!*", "*" ],
     :integer => [ "=", ">=", "<=", "><", "!*", "*" ],
     :float => [ "=", ">=", "<=", "><", "!*", "*" ],