From 91745af46d46bce57e9d3216540ff0ca50b6e71f Mon Sep 17 00:00:00 2001 From: Owen Leonard <oleonard@myacpl.org> 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 Signed-off-by: David Nind <david@davidnind.com> --- .../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 @@ <li class="breadcrumb-item"> <a href="/cgi-bin/koha/opac-main.pl">Home</a> </li> - <li class="breadcrumb-item"> - <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> - </li> + [% IF ( logged_in_user ) %] + <li class="breadcrumb-item"> + <a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a> + </li> + [% END %] <li class="breadcrumb-item active"> - <a href="#" aria-current="page">Your purchase suggestions</a> + <a href="#" aria-current="page">Purchase suggestions</a> </li> </ol> </nav> <!-- /#breadcrumbs --> -- 2.30.2