From 9a4b722658a901bf3764d70b1f241b59fe2d5425 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 19 May 2023 16:02:08 +0000 Subject: [PATCH] Bug 27378: Add missing aria-labels The checkboxes on the cookie consent modal were failing accessibility testing for not being labelled. This patch adds aria-labels to the checkboxes to satisfy the accessibility requirements Signed-off-by: Sam Lau --- koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc index 7540b5a36b..cf7fb3150d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc @@ -109,7 +109,7 @@ [% FOREACH consent IN consents %]
- +
[% consent.name | html %]
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc index ae76b8392e..f841213f24 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc @@ -475,7 +475,7 @@ [% FOREACH consent IN consents %]
- +
[% consent.name | html %]
-- 2.30.2