From c8c1abf8a73e61dd604946409ca0e11166b4a80b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 10 May 2023 11:21:19 +0200 Subject: [PATCH] Bug 33578: Fix patron restriction types edition When editing an existing patron restriction type you'll always get an error on saving: Label is already in use To test: * Activate use of patron restriction types * Edit any of the system types * Create new ones --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt index 7ae546a9839..b2c2b81a78c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt @@ -211,6 +211,7 @@ var MSG_DUPLICATE_DISPLAY_TEXT = _("Label is already in use"); var existing = { [% FOREACH ex IN existing %] + [% NEXT IF ex.code == restriction.code %] [% ex.code | $raw %]: '[% ex.display_text | $raw %]', [% END %] }; -- 2.25.1