From 5ab47a3d5c35b24e1bb5367f57ead759c235f216 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Fri, 26 Jan 2018 14:42:25 +1300 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 30714e0..4d32da2 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.7.4