Changeset 1003352
- Timestamp:
- 10/07/2014 03:02:58 PM (11 years ago)
- Location:
- register-plus-redux/branches/3.9
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
register-plus-redux.php (modified) (2 diffs)
-
rpr-login.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
register-plus-redux/branches/3.9/readme.txt
r987431 r1003352 119 119 == Changelog == 120 120 121 = 3.9.12 = 122 Unreleased by radiok 123 124 * Fixed jQuery that was altering attributes when it should be altering properties- radiok 125 * Fixed uninitialized $errors object- radiok 126 121 127 = 3.9.11 = 122 128 September 11, 2014 by radiok -
register-plus-redux/branches/3.9/register-plus-redux.php
r873215 r1003352 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 18 Version: 3.9.12 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.1 1' );29 define( 'RPR_VERSION', '3.9.12' ); 30 30 define( 'RPR_ACTIVATION_REQUIRED', '3.9.6' ); 31 31 -
register-plus-redux/branches/3.9/rpr-login.php
r987420 r1003352 524 524 global $errors; 525 525 if ( isset( $_GET['verification_code'] ) && '1' === $register_plus_redux->rpr_get_option( 'verify_user_email' ) ) { 526 if ( !is_wp_error( $errors ) ) $errors = new WP_Error(); 526 527 $user_id = $this->check_verification_code( (string) $_GET['verification_code'] ); 527 528 if ( !is_wp_error( $user_id ) ) { … … 584 585 $errors->error_data = $temp; 585 586 } 587 if ( !is_wp_error( $errors ) ) $errors = new WP_Error(); 586 588 $errors->add( 'verify_user_email', nl2br( $register_plus_redux->rpr_get_option( 'message_verify_user_email' ) ), 'message' ); 587 589 login_header( __('Verify Email', 'register-plus-redux' ), '', $errors); … … 603 605 $errors->error_data = $temp; 604 606 } 607 if ( !is_wp_error( $errors ) ) $errors = new WP_Error(); 605 608 $errors->add( 'verify_user_admin', nl2br( $register_plus_redux->rpr_get_option( 'message_verify_user_admin' ) ), 'message' ); 606 609 login_header( __('Admin Verification', 'register-plus-redux' ), '', $errors); … … 865 868 <script type="text/javascript"> 866 869 jQuery(document).ready(function() { 867 jQuery("#user_login").remove Attr("size");868 jQuery("#user_login").parent(). attr("id", "user_login-label");869 jQuery("#user_login").parent().parent(). attr("id", "user_login-p");870 jQuery("#user_email").remove Attr("size");871 jQuery("#user_email").parent(). attr("id", "user_email-label");872 jQuery("#user_email").parent().parent(). attr("id", "user_email-p");870 jQuery("#user_login").removeProp("size"); 871 jQuery("#user_login").parent().prop("id", "user_login-label"); 872 jQuery("#user_login").parent().parent().prop("id", "user_login-p"); 873 jQuery("#user_email").removeProp("size"); 874 jQuery("#user_email").parent().prop("id", "user_email-label"); 875 jQuery("#user_email").parent().parent().prop("id", "user_email-p"); 873 876 }); 874 877 </script>
Note: See TracChangeset
for help on using the changeset viewer.