Plugin Directory

Changeset 2432102


Ignore:
Timestamp:
12/05/2020 06:33:18 AM (5 years ago)
Author:
wpintegrate
Message:

updated compatibility with WordPress 5.3.3 and PHP 8.0.0

Location:
o365-user-authentication/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • o365-user-authentication/trunk/inc/o365_user_auth_online_class.php

    r2278275 r2432102  
    228228    {
    229229        global $wpdb;
     230        $user_email_setting = '';
    230231        // Try to find an existing user in WP where the UPN of the current AAD user is
    231232        // (depending on config) the 'login' or 'email' field
     
    253254                    $azure_login_setting_flow = json_decode( $azure_login_setting_flow );
    254255                    $mapped_fields = unserialize( $azure_login_setting_flow->user_auth_mapping_fields );
    255                     $user_email_setting = $azure_login_setting_flow->user_email_setting;
     256                    if( isset($azure_login_setting_flow->user_email_setting ) ){
     257                        $user_email_setting = $azure_login_setting_flow->user_email_setting;
     258                    }
     259                   
    256260                    /*get azure login user seeting:end */
    257261                    /*Get Mapped fields and assign azure API data to WordPress user fields Start Here*/
  • o365-user-authentication/trunk/o365-user-auth-online.php

    r2278286 r2432102  
    44 * Plugin Name: Office 365 User Authentication
    55 * Plugin URI:  http://www.wpintegrate.com/
    6  * Version:     2.0
     6 * Version:     2.1
    77 * Author:      wpintegrate.com
    88 * Author URI:  http://www.wpintegrate.com/
  • o365-user-authentication/trunk/readme.txt

    r2427732 r2432102  
    44Tags: authentication login, azure active directory sso, office 365, dynamics crm, sharepoint
    55Requires at least: 3.5.2
    6 Tested up to: 5.2.4
     6Tested up to: 5.5.3
    77Requires PHP: 5.6.36
    8 Stable tag: 2.0
     8Tested up to PHP: 8.0.0
     9Stable tag: 2.1
    910License: GPLv2 or later
    1011License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.