From ff9b51eeaaaacf407f4f2beb475671a33fc29b95 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 12 Jan 2024 16:35:28 +0000 Subject: [PATCH] Bug 35795: Missing closing tag in OPAC course details template This patch adds a missing closing tag, "" to the breadcrumb navigation shown when viewing the detail page of a course. To test you must have at least one course created in the course reserves module (Course reserves -> New course) - Apply the patch and go to the OPAC. - Open the Course reserves page and click the name of the course you created. - The last item in the breadcrumb menu should be "Course reserves for [your course name]" and "you_course_name" should be in italics. - The rest of the page should look correct. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt index 3849dbba4d..b7354fdb96 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt @@ -24,7 +24,7 @@ Course reserves [% END %] [% WRAPPER breadcrumb_item bc_active= 1 %] - Course reserves for  [% course.course_name | html %] + Course reserves for  [% course.course_name | html %] [% END %] [% END #/ WRAPPER breadcrumbs %] -- 2.30.2