From 23e923c90495c8606aafd25143fc7ab67bc91d01 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 27 Feb 2025 22:34:37 +0000 Subject: [PATCH] Bug 39212: Explicitly set the contentType to JSON To test: 1. Make an item or item type 'Bookable' 2. Place a booking for that item 3. Go the 'Bookings' tab for that item. 4. Edit the booking 5. Submit the edit request and see at the top of the modal "Failure" 6. APPLY PATCH 7. Try editing bookings, now it should work. --- koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js b/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js index 8bbb4547e91..4cceb20a0c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js @@ -1199,8 +1199,9 @@ $("#placeBookingForm").on("submit", function (e) { } else { url += "/" + booking_id; let putting = $.ajax({ - method: "PUT", + method: "POST", url: url, + contentType: "application/json", data: JSON.stringify({ booking_id: booking_id, start_date: start_date, -- 2.39.5