Plugin Directory

Changeset 873215


Ignore:
Timestamp:
03/11/2014 05:16:39 AM (12 years ago)
Author:
radiok
Message:

Minor cleanup, updated trunk version, updated readme.txt

Location:
register-plus-redux/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • register-plus-redux/trunk/readme.txt

    r714981 r873215  
    44Tags: registration, register, plus, redux, password, invitation, code, email, verification, disclaimer, license, agreement, privacy, policy, logo, moderation, user
    55Requires at least: 3.3
    6 Tested up to: 3.5
     6Tested up to: 3.8.1
    77Stable tag: 3.9.10
    88
     
    116116== Changelog ==
    117117
     118= 3.9.11 =
     119??? by radiok
     120
     121* Code cleanup
     122
    118123= 3.9.10 =
    119124May 14, 2013 by radiok
  • register-plus-redux/trunk/register-plus-redux.php

    r727146 r873215  
    66Plugin URI: http://radiok.info/blog/category/register-plus-redux/
    77Description: Enhances the user registration process with complete customization and additional administration options.
    8 Version: 3.9.10
     8Version: 3.9.11
    99Text Domain: register-plus-redux
    1010Domain Path: /languages
     
    2727// TODO: Enhancement- Widget is lame/near worthless
    2828
    29 define( 'RPR_VERSION', '3.9.9' );
     29define( 'RPR_VERSION', '3.9.11' );
    3030define( 'RPR_ACTIVATION_REQUIRED', '3.9.6' );
    3131
  • register-plus-redux/trunk/rpr-login.php

    r713246 r873215  
    435435            }
    436436            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'] ) ) {
    438438                    $errors->add( 'empty_password', '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>:&nbsp;' . __( 'Please enter a password.', 'register-plus-redux' ) );
    439439                }
     
    441441                    $errors->add( 'password_length', sprintf( '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>:&nbsp;' . __( 'Your password must be at least %d characters in length.', 'register-plus-redux' ), absint( $register_plus_redux->rpr_get_option( 'min_password_length' ) ) ) );
    442442                }
    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'] ) {
    444444                    $errors->add( 'password_mismatch', '<strong>' . __( 'ERROR', 'register-plus-redux' ) . '</strong>:&nbsp;' . __( 'Your password does not match.', 'register-plus-redux' ) );
    445445                }
Note: See TracChangeset for help on using the changeset viewer.