From cbcfaa55f43b54d2239836c3f4a61def64414d93 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 30 Jun 2021 15:42:50 +0000 Subject: [PATCH] Bug 28631: Holds History title link returns "not found" error This patch corrects a broken path in the OPAC holds history page. This patch also corrects the breadcrumb markup which didn't conform to the new Bootstrap 4 pattern. To test, apply the patch and log into the OPAC as a patron who has past or current holds. - View the "your holds history" page. - Click a title link in the table of holds. It should take you to the correct bibliographic detail page. - Check the breadcrumbs of the page. They should look consistent with breadcrumb navigation on other pages in the OPAC. --- .../bootstrap/en/modules/opac-holdshistory.tt | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-holdshistory.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-holdshistory.tt index 01e409b45e..caa13006ac 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-holdshistory.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-holdshistory.tt @@ -38,11 +38,19 @@ [% INCLUDE 'masthead.inc' %]
- +
@@ -104,7 +112,7 @@ [% FOREACH hold IN holds %] - [% INCLUDE 'biblio-title.inc' biblio=hold.biblio %] + [% INCLUDE 'biblio-title.inc' biblio=hold.biblio %] [% hold.biblio.author | html %] [% hold.item.barcode | html %] [% Branches.GetName( hold.branchcode ) | html %] -- 2.20.1