Changeset 46096
- Timestamp:
- 05/15/08 21:43:46 (2 months ago)
- Files:
-
- register-plus/tags/2.6 (added)
- register-plus/tags/2.6/addBtn.gif (added)
- register-plus/tags/2.6/captcha.jpg (added)
- register-plus/tags/2.6/captcha.php (added)
- register-plus/tags/2.6/dash_widget.php (added)
- register-plus/tags/2.6/readme.txt (added)
- register-plus/tags/2.6/recaptchalib.php (added)
- register-plus/tags/2.6/register-plus.php (added)
- register-plus/tags/2.6/removeBtn.gif (added)
- register-plus/tags/2.6/screenshot-1.png (added)
- register-plus/tags/2.6/screenshot-2.png (added)
- register-plus/tags/2.6/screenshot-3.png (added)
- register-plus/trunk/readme.txt (modified) (2 diffs)
- register-plus/trunk/register-plus.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
register-plus/trunk/readme.txt
r45886 r46096 5 5 Requires at least: 2.5 6 6 Tested up to: 2.5.1 7 Stable tag: 2. 57 Stable tag: 2.6 8 8 9 9 Enhance your Registration Page. Add Password Field, Invitation Codes, Disclaimers, CAPTCHA Validation, Email Validation, Profile Fields and more. … … 50 50 51 51 == CHANGELOG == 52 52 v2.6 - May 15, 2008 53 * Fixed error on ranpass function. 54 v2.5 - May 14, 2008 55 * Fixed registration password email to work when user set password is disabled 53 56 v2.4 - May 13, 2008 54 57 * Fixed localization issue register-plus/trunk/register-plus.php
r45886 r46096 5 5 Description: Enhance your Registration Page. Add Password Field, Invitation Codes, Disclaimer, Captcha Validation, Email Validation, Profile Fields and more. 6 6 Author: Skullbit 7 Version: 2. 57 Version: 2.6 8 8 Author URI: http://www.skullbit.com 9 9 … … 12 12 13 13 CHANGELOG 14 v2.6 - May 15, 2008 15 * Fixed error on ranpass function. 14 16 v2.5 - May 14, 2008 15 17 * Fixed registration password email to work when user set password is disabled … … 1015 1017 $plaintext_pass = $wpdb->prepare($_POST['pass1']); 1016 1018 else 1017 $plaintext_pass = RanPass(6);1019 $plaintext_pass = $register_plus->RanPass(6); 1018 1020 if( $regplus['firstname'] && $_POST['firstname'] ) 1019 1021 update_usermeta( $user_id, 'first_name', $wpdb->prepare($_POST['firstname']));
