From 19a05407f3aabb738ea88a1554181e17ec7136de Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 3 Mar 2026 21:19:53 +0000 Subject: [PATCH] Bug 41984: Add biblio.medium to holds.js title display To test: 1. Have a biblio with a 245$h ( biblio.medium ) 2. Place a hold on that title 3. Visit both members/moremember.pl and circ/circulation.pl to view the patron hold table. 4. Go to the Holds tab 5. Notice the title displays but not the 245$h. 6. APPLY PATCH, clear browser cache. 7. Try the steps again, this time you should see the 245$h. Note: I tried to keep the order the same as what I see in biblio-title.inc --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js index 5e6537fa721..46a530327c8 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -212,6 +212,8 @@ $(document).ready(function () { }); title += + " " + + oObj.medium + " " + oObj.part_number + " " + -- 2.39.5