From: Bill Erickson Date: Fri, 3 Jul 2020 14:05:33 +0000 (-0400) Subject: LP1886118 Staff catalog search format repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5ecd86231003dbe0c810fee71bc5248dfd94a838;p=Evergreen.git LP1886118 Staff catalog search format repair Fixes an error in the staff catalog search params builder with regard to encoding the search format. The 'format' param should be 'search_format'. Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts b/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts index 7010d9eff3..57d9db6573 100644 --- a/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts +++ b/Open-ILS/src/eg2/src/app/share/catalog/search-context.ts @@ -611,7 +611,7 @@ export class CatalogSearchContext { } if (ts.format) { - str += ' format(' + ts.format + ')'; + str += ' search_format(' + ts.format + ')'; } if (this.global) {