From c9326b7e6d41eff1f8414306356b9722a55c19c9 Mon Sep 17 00:00:00 2001 From: David Gustafsson Date: Tue, 19 May 2020 12:50:04 +0200 Subject: [PATCH] Bug 20057 - followup - add text for auto accepted changes 1. Apply patch. 2. Make sure syspref "PatronSelfRegistrationVerifyByEmail" is set to "Don't require". 3. 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. --- .../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 acb4725462..1822da692e 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.20.1