[Rt-commit] rt branch 4.4/self-service-article-case-insensitive-search created. rt-4.4.5-15-gb8a67c5a28
BPS Git Server
git at git.bestpractical.com
Thu Jan 20 17:36:36 UTC 2022
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "rt".
The branch, 4.4/self-service-article-case-insensitive-search has been created
at b8a67c5a281ad9618897ce86feb982dca193585a (commit)
- Log -----------------------------------------------------------------
commit b8a67c5a281ad9618897ce86feb982dca193585a
Author: sunnavy <sunnavy at bestpractical.com>
Date: Fri Jan 21 01:19:38 2022 +0800
Search Name/Summary case insensitively for SelfService article search
This is consistent with other places.
diff --git a/share/html/SelfService/Article/Search.html b/share/html/SelfService/Article/Search.html
index 3c8e98bc9d..5b39fc99f6 100644
--- a/share/html/SelfService/Article/Search.html
+++ b/share/html/SelfService/Article/Search.html
@@ -99,11 +99,13 @@ if ( $ARGS{'Articles_Content'} ) {
FIELD => 'Name',
OPERATOR => 'LIKE',
VALUE => $ARGS{'Articles_Content'},
+ CASESENSITIVE => 0,
ENTRYAGGREGATOR => "OR" );
$articles_basics->Limit( SUBCLAUSE => 'all',
FIELD => 'Summary',
OPERATOR => 'LIKE',
VALUE => $ARGS{'Articles_Content'},
+ CASESENSITIVE => 0,
ENTRYAGGREGATOR => "OR" );
}
-----------------------------------------------------------------------
hooks/post-receive
--
rt
More information about the rt-commit
mailing list