From e78c0b9b0385af22aad396cc883a225f56fed1c7 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Tue, 19 May 2020 12:50:04 +0200 Subject: [PATCH] Bug 20057: (follow-up) Add text for auto accepted changes 1. Apply patch. 2. Make sure syspref "AutoApprovePatronProfileSettings" is set to "Disable". 3. Edit patron personal details via opac interface. 4. Expect modifications to require manual approval by staff via link on main page. -> 4a. Text for patron says that changes are pending acceptance by the library 5. Set syspref "AutoApprovePatronProfileSettings" to "Enable". 6. Edit patron personal details via opac interface again. 7. Expect modifications to have been approved automatically. -> 7a. Text for patron says that changes have been submitted and accepted by the library. Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens --- .../bootstrap/en/modules/opac-memberentry-update-submitted.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry-update-submitted.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry-update-submitted.tt index 3e602e652b..5a2bd8461d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry-update-submitted.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry-update-submitted.tt @@ -25,7 +25,11 @@

Thank you

+ [% IF ( Koha.Preference('AutoApprovePatronProfileSettings') ) %] +

Your updates have been submitted and accepted by the library.

+ [% ELSE %]

Your updates have been submitted. A librarian will review your updates before applying them.

+ [% END %]
-- 2.11.0