Plugin Directory

Changeset 635292


Ignore:
Timestamp:
12/07/2012 09:35:05 AM (13 years ago)
Author:
3pillarlabs
Message:

Added a quick fix which will relax email verification in cases when login provider doesn't share user's email.

Location:
socialauth-wp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • socialauth-wp/trunk/admin-settings.php

    r632301 r635292  
    202202                        <?php $isChecked = (!empty($validateEmail) && ($validateEmail == 'validate'))? "checked='checked'": ""; ?>
    203203                        <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>
    205205                    </td>
    206206                </tr>
  • socialauth-wp/trunk/connect.php

    r632301 r635292  
    119119            }
    120120           
    121             if(!empty($validateEmail) && $validateEmail == 'validate' && $emailVerificationHash != 'validated')
     121            if(!empty($validateEmail) && $validateEmail == 'validate' && $emailVerificationHash != 'validated' && $ha_user_profile->email)
    122122            {
    123123                $userEmail = is_array($user_data)? $user_data['user_email']: $user_data->user_email;
  • socialauth-wp/trunk/readme.txt

    r632329 r635292  
    55Requires at least: 3.0.0
    66Tested up to: 3.4.2
    7 Stable tag: 1.5.5
     7Stable tag: 1.5.6
    88License: MIT License
    99License URI: http://www.opensource.org/licenses/MIT
  • socialauth-wp/trunk/social-auth-wp.php

    r632369 r635292  
    44Plugin URI: http://wordpress.org/extend/plugins/socialauth-wp/
    55Description: 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.5
     6Version: 1.5.6
    77Author: [email protected]
    88Author URI: http://socialauth.in/wordpress
Note: See TracChangeset for help on using the changeset viewer.