From 882305704e44e86588169d9fbcb458ed77fe3802 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 23 Feb 2024 16:55:12 +0000 Subject: [PATCH] Bug 34478: OPAC problem reports template update for messages The template uses checks on the op value to show messages, so those checks have to be updated with the new values. Signed-off-by: Jonathan Druart --- .../intranet-tmpl/prog/en/modules/tools/problem-reports.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt index 52acc03cbd..3604d39d1f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt @@ -42,11 +42,11 @@ [% IF ( selected_count ) %]
- [% IF ( action == 'viewed' ) %] + [% IF ( action == 'cud-mark_selected-viewed' ) %] [% selected_count | html %] problem report(s) marked as viewed. - [% ELSIF ( action == 'closed' ) %] + [% ELSIF ( action == 'cud-mark_selected-closed' ) %] [% selected_count | html %] problem report(s) marked as closed. - [% ELSIF ( action == 'new' ) %] + [% ELSIF ( action == 'cud-mark_selected-new' ) %] [% selected_count | html %] problem report(s) marked as new. [% ELSE %] Failed to change the status of [% selected_count | html %] problem report(s). -- 2.39.5