Changeset 635292
- Timestamp:
- 12/07/2012 09:35:05 AM (13 years ago)
- Location:
- socialauth-wp/trunk
- Files:
-
- 4 edited
-
admin-settings.php (modified) (1 diff)
-
connect.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
social-auth-wp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
socialauth-wp/trunk/admin-settings.php
r632301 r635292 202 202 <?php $isChecked = (!empty($validateEmail) && ($validateEmail == 'validate'))? "checked='checked'": ""; ?> 203 203 <input type="checkbox" name="SocialAuth_WP_validate_newUser_email" value="validate" <?php echo $isChecked;?> /> Yes, force user for email validation 204 <span class="description">This will add an another step of email validation for new users before they can get in. </span>204 <span class="description">This will add an another step of email validation for new users before they can get in. You will need to enable some settings in you wordpress installation so that emails can be send. If login provider doesn not share email, this option has no affect at all.</span> 205 205 </td> 206 206 </tr> -
socialauth-wp/trunk/connect.php
r632301 r635292 119 119 } 120 120 121 if(!empty($validateEmail) && $validateEmail == 'validate' && $emailVerificationHash != 'validated' )121 if(!empty($validateEmail) && $validateEmail == 'validate' && $emailVerificationHash != 'validated' && $ha_user_profile->email) 122 122 { 123 123 $userEmail = is_array($user_data)? $user_data['user_email']: $user_data->user_email; -
socialauth-wp/trunk/readme.txt
r632329 r635292 5 5 Requires at least: 3.0.0 6 6 Tested up to: 3.4.2 7 Stable tag: 1.5. 57 Stable tag: 1.5.6 8 8 License: MIT License 9 9 License URI: http://www.opensource.org/licenses/MIT -
socialauth-wp/trunk/social-auth-wp.php
r632369 r635292 4 4 Plugin URI: http://wordpress.org/extend/plugins/socialauth-wp/ 5 5 Description: SocialAuth-WordPress is a Wordpress 3.0+ plugin derived from popular PHP based HybridAuth library. Inspired from other Wordpress social login plugins, this plugin seamlessly integrates into any Wordpress 3.0+ application and enables social login integration through different service providers. All you have to do is to configure the plugin from settings page before you can start using it. SocialAuth-WP hides all the intricacies of generating signatures and token, doing security handshakes and provides an out of the box a simple solution to interact with providers. 6 Version: 1.5. 56 Version: 1.5.6 7 7 Author: [email protected] 8 8 Author URI: http://socialauth.in/wordpress
Note: See TracChangeset
for help on using the changeset viewer.