[Rt-commit] rt branch, 4.4/queue-group-casesensitive-search, created. rt-4.4.2-74-gfe56c1981
Jim Brandt
jbrandt at bestpractical.com
Thu Feb 8 08:25:49 EST 2018
The branch, 4.4/queue-group-casesensitive-search has been created
at fe56c19817a4ec3540befed0b1b17ce2b4f060a9 (commit)
- Log -----------------------------------------------------------------
commit fe56c19817a4ec3540befed0b1b17ce2b4f060a9
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Thu Feb 8 08:23:25 2018 -0500
Make admin searches for queue and group case insensitive
RT defaults searches to CASESENSITIVE for historical and performance
reasons. Convert the queue and group admin searches to
case insensitive to make it easier to find queues and groups.
diff --git a/share/html/Admin/Groups/index.html b/share/html/Admin/Groups/index.html
index 42a9bdd4c..6bd44c6ef 100644
--- a/share/html/Admin/Groups/index.html
+++ b/share/html/Admin/Groups/index.html
@@ -112,6 +112,7 @@ if (length $GroupString) {
FIELD => $GroupField,
OPERATOR => $GroupOp,
VALUE => $GroupString,
+ CASESENSITIVE => 0
);
}
RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Groups/Modify.html?id=".$Groups->First->id)
diff --git a/share/html/Admin/Queues/index.html b/share/html/Admin/Queues/index.html
index 1e1e2915c..ae6527492 100644
--- a/share/html/Admin/Queues/index.html
+++ b/share/html/Admin/Queues/index.html
@@ -102,6 +102,7 @@ if ( defined $QueueString && length $QueueString ) {
FIELD => $QueueField,
OPERATOR => $QueueOp,
VALUE => $QueueString,
+ CASESENSITIVE => 0
);
RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Queues/Modify.html?id=".$queues->First->id)
if $queues->Count == 1;
-----------------------------------------------------------------------
More information about the rt-commit
mailing list