summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-12-12 00:56:32 +0000
committerGo MAEDA <maeda@farend.jp>2019-12-12 00:56:32 +0000
commit261d3ed39cdc3dd01b55519f37695d71f5df5314 (patch)
tree2903a4071db5298c7a39bd63386a0693e34e201a /app
parentb8dee19064f4191f986783755e6c232070934431 (diff)
downloadredmine-261d3ed39cdc3dd01b55519f37695d71f5df5314.tar.gz
redmine-261d3ed39cdc3dd01b55519f37695d71f5df5314.zip
Issue relations filter lacks "is not" (#32546).
Patch by Alexander Achenbach. git-svn-id: http://svn.redmine.org/redmine/trunk@19363 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/query.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/query.rb b/app/models/query.rb
index 9e5071e6c..0e38b47d8 100644
--- a/app/models/query.rb
+++ b/app/models/query.rb
@@ -300,7 +300,7 @@ class Query < ActiveRecord::Base
:text => [ "~", "!~", "^", "$", "!*", "*" ],
:integer => [ "=", ">=", "<=", "><", "!*", "*" ],
:float => [ "=", ">=", "<=", "><", "!*", "*" ],
- :relation => ["=", "=p", "=!p", "!p", "*o", "!o", "!*", "*"],
+ :relation => ["=", "!", "=p", "=!p", "!p", "*o", "!o", "!*", "*"],
:tree => ["=", "~", "!*", "*"]
}