@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/js/acq.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js @@ -681,7 +681,7 @@ function calcNewsuggTotal(){ function getAuthValueDropbox( name, cat, destination, selected ) { if (cat == null || cat == "") { - $(destination).replaceWith(' ' ); + $(destination).replaceWith(' ' ); return; } $.ajax({ @@ -694,7 +694,7 @@ function getAuthValueDropbox( name, cat, destination, selected ) { async: false, success: function(data){ if(data === "0"){ - $(destination).replaceWith(' ' ); + $(destination).replaceWith(' ' ); }else{ $(destination).replaceWith(data); } --