From 3f8f57ada4b4a05ad375d2134ebf0d76920d2fac Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Fri, 20 Oct 2017 22:32:46 +0000 Subject: [PATCH] Bug 18308 - Increased default value of minPasswordValue Test plan: 1. Create a patron with a password less than 3 characters in length and notice that a red message is displayed by the input telling you that the password must be 3 characters minimum length 2. Ensuring PatronSelfRegistration syspref is enabled, and PatronSelfRegistationDefaultCategory is set register a patron in the OPAC with a password of 2 characters and notice that a red message is displayed informing you that the password must be at least 3 characters 3. Run updatedatabase.pl 4. Repeat step 1 and notice that the password must be 8 characters or more now 5. Repeat step 2 and notice that the password must be 8 characters or more now Sponsored-By: Catalyst IT --- .../mysql/atomicupdate/bug_18308-update_minPasswordLength_syspref.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 installer/data/mysql/atomicupdate/bug_18308-update_minPasswordLength_syspref.sql diff --git a/installer/data/mysql/atomicupdate/bug_18308-update_minPasswordLength_syspref.sql b/installer/data/mysql/atomicupdate/bug_18308-update_minPasswordLength_syspref.sql new file mode 100644 index 0000000..b97de94 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_18308-update_minPasswordLength_syspref.sql @@ -0,0 +1 @@ +UPDATE systempreferences SET value=8 WHERE variable="minPasswordLength"; -- 2.1.4