@@ -, +, @@ /holds/:hold_id from the patron's page fails because of invalid pickup location. actually refetch, so just verify it has the value you selected --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -229,7 +229,8 @@ $(document).ready(function() { $.ajax({ method: "PUT", url: api_url, - data: update_info , + data: update_info, + headers: { "x-koha-override": "any" }, success: function( data ){ holdsTable.api().ajax.reload(); }, error: function( jqXHR, textStatus, errorThrown) { alert('There was an error:'+textStatus+" "+errorThrown); --