From 1868cd9576943b18f3f786f13e5eb92f0a4a2f85 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Tue, 13 Nov 2018 13:57:57 +0000 Subject: [PATCH] Bug 7088: (follow-up) Fix renewal limit bug There was a bug in that altering the state of the "Override renewal limit" checkbox was altering the appearance of the per-item "On hold" checkbox. This is incorrect, the "Override renewal limit" checkbox is unconnected with this bug. Sponsored-by: Cheshire Libraries Shared Services Sponsored-by: Halton Borough Council Sponsored-by: Sefton Council Signed-off-by: Andrew Farthing Signed-off-by: Liz Rea --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 4ca568c0b5..7750ceb6a4 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -413,7 +413,6 @@ $(document).ready(function() { + ""; span_style = AllowRenewalLimitOverride ? "" : "display: none"; - span_class = "renewals-allowed"; } else if ( oObj.can_renew_error == "too_many" ) { msg += "" + NOT_RENEWABLE -- 2.11.0