Changeset 873215
- Timestamp:
- 03/11/2014 05:16:39 AM (12 years ago)
- Location:
- register-plus-redux/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
register-plus-redux.php (modified) (2 diffs)
-
rpr-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
register-plus-redux/trunk/readme.txt
r714981 r873215 4 4 Tags: registration, register, plus, redux, password, invitation, code, email, verification, disclaimer, license, agreement, privacy, policy, logo, moderation, user 5 5 Requires at least: 3.3 6 Tested up to: 3. 56 Tested up to: 3.8.1 7 7 Stable tag: 3.9.10 8 8 … … 116 116 == Changelog == 117 117 118 = 3.9.11 = 119 ??? by radiok 120 121 * Code cleanup 122 118 123 = 3.9.10 = 119 124 May 14, 2013 by radiok -
register-plus-redux/trunk/register-plus-redux.php
r727146 r873215 6 6 Plugin URI: http://radiok.info/blog/category/register-plus-redux/ 7 7 Description: Enhances the user registration process with complete customization and additional administration options. 8 Version: 3.9.1 08 Version: 3.9.11 9 9 Text Domain: register-plus-redux 10 10 Domain Path: /languages … … 27 27 // TODO: Enhancement- Widget is lame/near worthless 28 28 29 define( 'RPR_VERSION', '3.9. 9' );29 define( 'RPR_VERSION', '3.9.11' ); 30 30 define( 'RPR_ACTIVATION_REQUIRED', '3.9.6' ); 31 31 -
register-plus-redux/trunk/rpr-login.php
r713246 r873215 435 435 } 436 436 if ( '1' === $register_plus_redux->rpr_get_option( 'user_set_password' ) ) { 437 if ( empty( $_POST['pass1'] ) && '1' !== $register_plus_redux->rpr_get_option( 'disable_password_confirmation' )) {437 if ( empty( $_POST['pass1'] ) ) { 438 438 $errors->add( 'empty_password', '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>: ' . __( 'Please enter a password.', 'register-plus-redux' ) ); 439 439 } … … 441 441 $errors->add( 'password_length', sprintf( '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>: ' . __( 'Your password must be at least %d characters in length.', 'register-plus-redux' ), absint( $register_plus_redux->rpr_get_option( 'min_password_length' ) ) ) ); 442 442 } 443 elseif ( '1' !== $register_plus_redux->rpr_get_option( 'disable_password_confirmation' ) && ( $_POST['pass1'] !== $_POST['pass2'] )) {443 elseif ( '1' !== $register_plus_redux->rpr_get_option( 'disable_password_confirmation' ) && $_POST['pass1'] !== $_POST['pass2'] ) { 444 444 $errors->add( 'password_mismatch', '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>: ' . __( 'Your password does not match.', 'register-plus-redux' ) ); 445 445 }
Note: See TracChangeset
for help on using the changeset viewer.