From 790e4101c6faf6dc18cf1f6127e854e9a0e28667 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 2 Jul 2014 09:10:33 -0400 Subject: [PATCH] [PASSED QA] Bug 12517 - Download and send list popups broken in bootstrap OPAC A JavaScript error prevents the download list and send list links in the bootstrap OPAC from functioning correctly. A variable declaration was removed from basket.js during the creation of the theme but opac-shelves.tt was not changed accordingly. This patch corrects it. To test, view an existing shelf in the bootstrap OPAC and test the "download list" and "send list" links. They should each trigger popups without any errors. Signed-off-by: Bernardo Gonzalez Kriegel Popups pops again, no koha-qa errors Signed-off-by: Kyle M Hall --- .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt index 87223bb..a6d9040 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt @@ -156,10 +156,10 @@
New list | - Download list + Download list [% IF Koha.Preference( 'opacuserlogin' ) == 1 %] - Send list + Send list [% END %] Print list -- 1.7.2.5