Navigation on the left (Normal, MARC, etc...) needs biblionumber in
template variables to work.

Test:
1. go to checkout history for any biblio
2. verify that normal, MARC, etc links on the left no longer work
   due to missing biblionumber in URL
3. apply patch and test it again
---
 catalogue/issuehistory.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/catalogue/issuehistory.pl b/catalogue/issuehistory.pl
index 070a128..d154a21 100755
--- a/catalogue/issuehistory.pl
+++ b/catalogue/issuehistory.pl
@@ -50,6 +50,7 @@ my $issues = GetBiblioIssues($biblionumber);
 my $biblio = Koha::Biblios->find( $biblionumber );
 
 $template->param(
+    biblionumber => $biblionumber, # required for left-side navigation
     biblio       => $biblio,
     total        => scalar @$issues,
     issues       => $issues,
-- 
2.1.4

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to