From 485464792907f2d77823332cb1f66dd55737d593 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 22 Sep 2022 16:41:12 +0000 Subject: [PATCH] Bug 31527: Breadcrumbs for anonymous suggestions are not correct This patch updates the OPAC suggestions template in order to omit the patron name breadcrumb if there is not a logged-in user. To test, apply the patch and view the OPAC suggestions page with the AnonSuggestions preference both enabled and disabled. - If you are logged in, the page breadcrumbs will be: Home -> [Your name] -> Purchase suggestions. - If you are not logged in it should be: Home -> Purchase suggestions --- .../opac-tmpl/bootstrap/en/modules/opac-suggestions.tt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt index 576178db7d..e147adbb0e 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt @@ -24,11 +24,13 @@ - + [% IF ( logged_in_user ) %] + + [% END %] -- 2.30.2