From ba1547c8987534915e2761c88e0f5fcc837a0c49 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 2 Jul 2014 09:10:33 -0400 Subject: [PATCH] [SIGNED-OFF] 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 --- .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 4 ++-- 1 file 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.9.5