Social Login - Version 6.6.2

Version Description

  • Updated Readme
  • Removed the message 'No user is returned'
  • Fix for conflict with other plugins that call wp_login hook
Download this release

Release Info

Developer cyberlord92
Plugin Icon 128x128 Social Login
Version 6.6.2
Comparing to
See all releases

Code changes from version 6.6.1 to 6.6.2

class-mo-openid-login-widget.php CHANGED
@@ -2242,7 +2242,8 @@ if(mo_openid_is_customer_registered()) {
2242
  return;
2243
  }
2244
  elseif(!isset($userid)){
2245
- wp_die('No user is returned.');
 
2246
  }
2247
 
2248
  global $wpdb;
2242
  return;
2243
  }
2244
  elseif(!isset($userid)){
2245
+ return;
2246
+ //wp_die('No user is returned.');
2247
  }
2248
 
2249
  global $wpdb;
class-mo-openid-sso-customer.php CHANGED
@@ -239,8 +239,6 @@ class CustomerOpenID {
239
  $customerKey = get_option('mo_openid_admin_customer_key');
240
  $apiKey = get_option('mo_openid_admin_api_key');
241
 
242
- $username = get_option('mo_openid_admin_email');
243
- $phone = get_option('mo_openid_admin_phone');
244
  /* Current time in milliseconds since midnight, January 1, 1970 UTC. */
245
  $currentTimeInMillis = self::get_timestamp();
246
  $stringToHash = $customerKey . $currentTimeInMillis . $apiKey;
239
  $customerKey = get_option('mo_openid_admin_customer_key');
240
  $apiKey = get_option('mo_openid_admin_api_key');
241
 
 
 
242
  /* Current time in milliseconds since midnight, January 1, 1970 UTC. */
243
  $currentTimeInMillis = self::get_timestamp();
244
  $stringToHash = $customerKey . $currentTimeInMillis . $apiKey;
miniorange_openid_sso_settings.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
7
- * Version: 6.6.1
8
  * Author: miniOrange
9
  * Author URI: https://www.miniorange.com
10
  * License: GPL2
@@ -15,7 +15,7 @@ include_once dirname( __FILE__ ) . '/class-mo-openid-login-widget.php';
15
  require('class-mo-openid-sso-customer.php');
16
  require('class-mo-openid-sso-shortcode-buttons.php');
17
  require('class-mo-openid-social-comment.php');
18
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '6.6.1');
19
 
20
  class Miniorange_OpenID_SSO {
21
 
@@ -742,7 +742,6 @@ class Miniorange_OpenID_SSO {
742
  update_option( 'mo_openid_admin_customer_valid', strcasecmp($content['licenseType'], 'Premium') !== FALSE ? 1 : 0);
743
  update_option( 'mo_openid_admin_customer_plan', isset($content['licensePlan']) ? base64_encode($content['licensePlan']) : 0);
744
  if(get_option('mo_openid_admin_customer_valid') && isset($content['licensePlan'])){
745
- $license = array();
746
  $license = explode(' -', $content['licensePlan']);
747
  $lp = $license[0];
748
  update_option( 'mo_openid_message','You are on the old ' . $lp . '.');
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
7
+ * Version: 6.6.2
8
  * Author: miniOrange
9
  * Author URI: https://www.miniorange.com
10
  * License: GPL2
15
  require('class-mo-openid-sso-customer.php');
16
  require('class-mo-openid-sso-shortcode-buttons.php');
17
  require('class-mo-openid-social-comment.php');
18
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '6.6.2');
19
 
20
  class Miniorange_OpenID_SSO {
21
 
742
  update_option( 'mo_openid_admin_customer_valid', strcasecmp($content['licenseType'], 'Premium') !== FALSE ? 1 : 0);
743
  update_option( 'mo_openid_admin_customer_plan', isset($content['licensePlan']) ? base64_encode($content['licensePlan']) : 0);
744
  if(get_option('mo_openid_admin_customer_valid') && isset($content['licensePlan'])){
 
745
  $license = explode(' -', $content['licensePlan']);
746
  $lp = $license[0];
747
  update_option( 'mo_openid_message','You are on the old ' . $lp . '.');
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Social Login ===
2
  Contributors: miniOrange
3
  Donate link: https://www.miniorange.com
4
- Tags: social login, social, facebook, twitter, login
5
  Requires at least: 2.0.2
6
  Tested up to: 4.9.4
7
- Stable tag: 6.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -165,6 +165,11 @@ Please email us at info@miniorange.com. You can also submit your query from the
165
 
166
 
167
  == Changelog ==
 
 
 
 
 
168
  = 6.6.1 =
169
  * Fix for issue in editing/uploading BuddyPress profile picture
170
  * Added check to prohibit insertion of rows in account linking table that have empty field values
@@ -516,6 +521,11 @@ Please email us at info@miniorange.com. You can also submit your query from the
516
  * First version of Social Login, Social Sharing plugin.
517
 
518
  == Upgrade Notice ==
 
 
 
 
 
519
  = 6.6.1 =
520
  * Fix for issue in editing/uploading BuddyPress profile picture
521
  * Added check to prohibit insertion of rows in account linking table that have empty field values
1
  === Social Login ===
2
  Contributors: miniOrange
3
  Donate link: https://www.miniorange.com
4
+ Tags: social login, social, facebook, twitter, login, facebook login, google login, google, twitter login, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 4.9.4
7
+ Stable tag: 6.6.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
165
 
166
 
167
  == Changelog ==
168
+ = 6.6.2 =
169
+ * Updated Readme
170
+ * Removed the message 'No user is returned'
171
+ * Fix for conflict with other plugins that call wp_login hook
172
+
173
  = 6.6.1 =
174
  * Fix for issue in editing/uploading BuddyPress profile picture
175
  * Added check to prohibit insertion of rows in account linking table that have empty field values
521
  * First version of Social Login, Social Sharing plugin.
522
 
523
  == Upgrade Notice ==
524
+ = 6.6.2 =
525
+ * Updated Readme
526
+ * Removed the message 'No user is returned'
527
+ * Fix for conflict with other plugins that call wp_login hook
528
+
529
  = 6.6.1 =
530
  * Fix for issue in editing/uploading BuddyPress profile picture
531
  * Added check to prohibit insertion of rows in account linking table that have empty field values