From 57097fbcf24879f86afc7f0cf38498f4f0d41ac4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 12 Jun 2018 11:26:02 -0300 Subject: [PATCH] Bug 20918: Fix left-side navigation on the checkout history page commit fa54100dffe092e606f79b15692eedaf78f42e45 Bug 18403: Use patron-title.inc when hidepatronname is used [SPECIFIC for issuehistory] Removed: - biblionumber => $biblionumber, # required for left-side navigation But did not deal with the side-effects. Test plan: When you are on the "Checkout history" page (/cgi-bin/koha/catalogue/issuehistory.pl?biblionumber=42), the left-side navigation is broken if this patch is not applied, the biblionumber is not set. --- koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc index 95c0ee4640..f0b2a8fa93 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -1,6 +1,6 @@ [% USE Koha %] [% USE Biblio %] -[% SET biblio_object_id = object || biblionumber %] +[% SET biblio_object_id = object || biblionumber || biblio.biblionumber %]