Changeset 46096

Show
Ignore:
Timestamp:
05/15/08 21:43:46 (2 months ago)
Author:
skullbit
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • register-plus/trunk/readme.txt

    r45886 r46096  
    55Requires at least: 2.5 
    66Tested up to: 2.5.1 
    7 Stable tag: 2.5 
     7Stable tag: 2.6 
    88 
    99Enhance your Registration Page.  Add Password Field, Invitation Codes, Disclaimers, CAPTCHA Validation, Email Validation, Profile Fields and more. 
     
    5050                         
    5151== CHANGELOG == 
    52  
     52v2.6 - May 15, 2008 
     53* Fixed error on ranpass function. 
     54v2.5 - May 14, 2008 
     55* Fixed registration password email to work when user set password is disabled 
    5356v2.4 - May 13, 2008 
    5457* Fixed localization issue 
  • register-plus/trunk/register-plus.php

    r45886 r46096  
    55Description: Enhance your Registration Page.  Add Password Field, Invitation Codes, Disclaimer, Captcha Validation, Email Validation, Profile Fields and more. 
    66Author: Skullbit 
    7 Version: 2.5 
     7Version: 2.6 
    88Author URI: http://www.skullbit.com 
    99 
     
    1212                         
    1313CHANGELOG 
     14v2.6 - May 15, 2008 
     15      * Fixed error on ranpass function. 
    1416v2.5 - May 14, 2008 
    1517      * Fixed registration password email to work when user set password is disabled 
     
    10151017            $plaintext_pass = $wpdb->prepare($_POST['pass1']); 
    10161018      else 
    1017             $plaintext_pass = RanPass(6); 
     1019            $plaintext_pass = $register_plus->RanPass(6); 
    10181020      if( $regplus['firstname'] && $_POST['firstname'] )     
    10191021            update_usermeta( $user_id, 'first_name', $wpdb->prepare($_POST['firstname']));