From 9793f0f6a83a46bfd30ea38ada887435fcd17a1f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 5 Jan 2024 12:17:53 +0100 Subject: [PATCH] Bug 35742: Fix removal of added user from fund On the fund edition page, if a new user is added the "Remove" link does not remove the user. Test plan: 0. Do not apply this patch 1. Edit a fund 2. Click "Add users" 3. Search for patron and add some users => Notice that the "Remove" link does not remove the user 4. Apply this patch and repat 1, 2, 3 => Notice that the "Remove" link remove the user --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index cd26269a472..ebb1d096edb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -579,7 +579,7 @@ var li = '
  • ' + '' + borrowername + ' ' - + ' • '+_("Remove")+' ' + + ' • '+_("Remove")+' ' + '
  • '; $("#budget_users").prepend(li); ids.push(borrowernumber); -- 2.34.1