From 06723798bc82c5cbafdda79a2a738b8f2af843f0 Mon Sep 17 00:00:00 2001 From: nikitasinelnikov Date: Wed, 18 Nov 2020 17:33:02 +0200 Subject: [PATCH] - updated readme; --- includes/core/class-validation.php | 2 +- readme.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/core/class-validation.php b/includes/core/class-validation.php index 02c3886c..ee3ea7c3 100644 --- a/includes/core/class-validation.php +++ b/includes/core/class-validation.php @@ -172,7 +172,7 @@ if ( ! class_exists( 'um\core\Validation' ) ) { // are used Unicode Regular Expressions $regexps = [ '/[\p{Lu}]/u', // any Letter Uppercase symbol - '/[\p{Ll}]/u', // any Letter Lowercase symbol + '/[\p{Ll}]/u', // any Letter Lowercase symbol '/[\p{N}]/u', // any Number symbol ]; foreach ( $regexps as $regexp ) { diff --git a/readme.txt b/readme.txt index 73cd5073..3d1e97b7 100644 --- a/readme.txt +++ b/readme.txt @@ -166,6 +166,7 @@ The plugin works with popular caching plugins by automatically excluding Ultimat - Fixed: Upgrade process on websites where a hosting locks the frequent AJAX requests (added default JS throttle between requests) - Fixed: Getting page content of the GDPR privacy policies + - Fixed: Password strength validation for Unicode symbols = 2.1.12: October 29, 2020 =