From f66f34a4200593f07b596d02b880aaf456b0c3fa Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 7 Oct 2013 11:41:22 +0200 Subject: [PATCH] Bug 11003: fix JS error on the staff cart page A call to yuiToolbar breaks JavaScript code on the cart page. Test plan: - add some biblio to your cart - open the cart - a js error occurs (see it with firebug): ReferenceError: yuiToolbar is not defined - apply the patch - retry and verify the error does not appear anymore. Signed-off-by: Paola Rossi Signed-off-by: Katrin Fischer Works as described. Signed-off-by: Galen Charlton --- koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt index c07cc74366..054596189a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt @@ -62,7 +62,6 @@ function placeHold () { $(".holdsep").text("| "); $(".hold").text(_("Place Hold")); $("#downloadcartc").empty(); - yuiToolbar(); $("#itemst").tablesorter({ headers: { 0: { sorter: false }} }); -- 2.39.5