From 501c3f8c68304cfac0c80df377bd25ccc70738f9 Mon Sep 17 00:00:00 2001 From: nina martinez Date: Wed, 18 Jun 2025 15:32:52 +0200 Subject: [PATCH] Bug 40283: Report Problem page. Test plan: 1. Allow the system preference: OPACReportProblem, and entry an email in ReplytoDefault 2. Log in to a patron account. 3. Try to send a problem to a librarian. A message of confirmation should appear: "Your problem report has been sent to the library". Inspect the html code and notice that there is a role="status" in the message tag. 4. Remake step 3 but with a Koha administrator. --- .../opac-tmpl/bootstrap/en/modules/opac-reportproblem.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reportproblem.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reportproblem.tt index 197f9aa89c..45cd3a6d27 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reportproblem.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reportproblem.tt @@ -51,9 +51,9 @@ [% SWITCH m.code %] [% CASE 'success_on_send' %] [% IF recipient == 'admin' %] - Your problem report has been sent to the Koha administrator. + Your problem report has been sent to the Koha administrator. [% ELSE %] - Your problem report has been sent to the library. + Your problem report has been sent to the library. [% END %] [% CASE 'error_on_send' #We really should avoid reaching this! %] Something wrong happened when sending the report. Please contact your library. -- 2.43.0