From: Jason Boyer Date: Tue, 11 May 2021 14:00:15 +0000 (-0400) Subject: LP#1892435 - Add Release Note X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a511478fd7ac15868ddc127e0ac4516c339b9817;p=evergreen%2Fpines.git LP#1892435 - Add Release Note Signed-off-by: Jason Boyer --- diff --git a/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc new file mode 100644 index 0000000000..c12294b110 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc @@ -0,0 +1,14 @@ +Fix for Staff Splash Page Multi-Word Search +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +The addition of the Angular Staff Catalog surfaced a double-encoding issue +with redirects in certain Apache versions. This caused searches for multiple +words to have %20 in place of spaces, almost certainly resulting in 0 results. + +In order to apply this fix, change the Angular redirects in eg_vhost.conf from + + RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [R=307,L] + +to + + RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L] +