PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.43
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.43
1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.23 All 172 releases
← All changes | includes/template-functions.php +5 -5 trunk1.2.43 View file →
@@ -157,13 +157,13 @@
157 157 function( event ) {
158 158 var $form = $(this).closest('form');
159 159 if( ! $form.hasClass('uwp-login-form') ) {
160 160 uwp_checkPasswordStrength(
161 - $form.find('input[name=password]'),
162 - $form.find('input[name=confirm_password]'),
163 - $form.find('#uwp-password-strength'),
164 - $form.find('button[type="submit"], input[type="submit"]'),
165 - ['black', 'listed', 'word']
161 + $('input[name=password]', $form), // First password field
162 + $('input[name=confirm_password]', $form), // Second password field
163 + $('#uwp-password-strength', $form), // Strength meter
164 + $('input[type=submit]', $form), // Submit button
165 + ['black', 'listed', 'word'] // Blacklisted words
166 166 );
167 167 }
168 168 }
169 169 );