From 382bae38f6eeee035a79059bc0ead85c20aa3bfa Mon Sep 17 00:00:00 2001 From: Marius Mandrescu Date: Fri, 27 Jan 2023 10:24:51 -0500 Subject: [PATCH] Subject: [PATCH] Bug 32726: Authority search result display and relator term This pacht displays the relator term in Authority search results in summary column. 1. Go to authorities-home.pl 2. Do a search by personal names (Take one that has no relator term). 3. Edit the authority. 4. Add a Relator term.(100$e) 5. Check in Authority search results the relator term does not appear in summary. 6. Apply patch. 7. Repeat step 5. Now you should be able to see the telator term in summary. --- .../bootstrap/en/includes/authorities-search-results.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc index f73835b99a..77ce002d6b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc @@ -63,7 +63,7 @@ [% UNLESS ( summary.summaryonly ) %]
[% FOREACH authorize IN summary.authorized %] - [% authorize.heading | html %] + [% authorize.heading | html %] [% authorize.relator | html %] [% UNLESS loop.last %]|[% END %] [% END %]
-- 2.34.1