From 0664d9f10bbe38e3e136504bdc18df071915ff14 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 9 Apr 2014 12:15:56 -0400 Subject: [PATCH] Bug 12058 - OverDrive search results page doesn't show cart, lists, or login links Content-Type: text/plain; charset=utf-8 The template for OverDrive search results in the Bootstrap OPAC doesn't show the cart, lists, or login links because the template's checks of related system preferences relies on [% USE Koha %], which is not present. This patch adds it. To test, enable the bootstrap theme and OverDrive integration (OverDriveClientKey, etc.). Perform a search in the OPAC and click to view results from your OverDrive library. Confirm that cart, lists, and login links appear in the header. Signed-off-by: Jesse Weaver Bug confirmed, and this patch fixes it. Signed-off-by: Marcel de Rooy --- .../bootstrap/en/modules/opac-overdrive-search.tt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-overdrive-search.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-overdrive-search.tt index 1d3924f..d7aa281 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-overdrive-search.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-overdrive-search.tt @@ -1,3 +1,4 @@ +[% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] [% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › OverDrive search for '[% q | html %]' [% INCLUDE 'doc-head-close.inc' %] -- 1.7.7.6