From 0fcc3973a4d414bd9bf98a6fc936ff6b18f165f2 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 17 Jun 2022 21:26:55 +0000 Subject: [PATCH] Bug 30989: (QA follow-up) Use uri filter on staff detail page This applies the same fix as the first patch but to the staff interface detail page. With this fix, a tag like +++ can be clicked and the tagged records will show. To test: - Tag some records in the staff interface with something like +++ - Go to the detail page of one of those recods - Click on the tag - Verify nothing is found - Apply patch - Repeat - all tagged records will show Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 917a7ef246..7c3961bcb0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -131,7 +131,7 @@ Tags: [% FOREACH TagLoo IN TagLoop %] [% IF ( CAN_user_tools_moderate_tags ) %] - [% TagLoo.term | html %] + [% TagLoo.term | html %] [% ELSE %] [% TagLoo.term | html %] [% END %] -- 2.30.2