Social Login - Version 7.1.3

Version Description

  • Minor bug fixes.
Download this release

Release Info

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

Code changes from version 7.1.2 to 7.1.3

class-mo-openid-sso-customer.php CHANGED
@@ -177,8 +177,8 @@ class CustomerOpenID {
177
  curl_setopt( $ch, CURLOPT_ENCODING, "" );
178
  curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
179
  curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
180
- curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); # required for https urls
181
- curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, false );
182
  curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
183
  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", $customerKeyHeader, $timestampHeader, $authorizationHeader));
184
  curl_setopt( $ch, CURLOPT_POST, true);
@@ -209,7 +209,7 @@ class CustomerOpenID {
209
  curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
210
  curl_setopt ( $ch, CURLOPT_AUTOREFERER, true );
211
  curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
212
- curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, false ); // required for https urls
213
 
214
  curl_setopt ( $ch, CURLOPT_MAXREDIRS, 10 );
215
 
177
  curl_setopt( $ch, CURLOPT_ENCODING, "" );
178
  curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
179
  curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
180
+ curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false); # required for https urls
181
+ curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, 2 );
182
  curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
183
  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", $customerKeyHeader, $timestampHeader, $authorizationHeader));
184
  curl_setopt( $ch, CURLOPT_POST, true);
209
  curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
210
  curl_setopt ( $ch, CURLOPT_AUTOREFERER, true );
211
  curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
212
+ curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, 2 ); // required for https urls
213
 
214
  curl_setopt ( $ch, CURLOPT_MAXREDIRS, 10 );
215
 
miniorange_openid_sso_settings.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Social Login, Social Sharing by miniOrange
4
  * Plugin URI: https://www.miniorange.com/social-login
5
  * Description: Allow your users to login, comment and share with social login apps like Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
6
- * Version: 7.1.2
7
  * Author: social login (miniOrange)
8
  * Author URI: https://www.miniorange.com/social-login
9
  * License: GPL2
@@ -14,7 +14,7 @@ include_once dirname( __FILE__ ) . '/class-mo-openid-login-widget.php';
14
  require('class-mo-openid-sso-customer.php');
15
  require('class-mo-openid-sso-shortcode-buttons.php');
16
  require('class-mo-openid-social-comment.php');
17
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.1.2');
18
  include dirname( __FILE__ ) . '/mo_openid_feedback_form.php';
19
  class Miniorange_OpenID_SSO {
20
 
3
  * Plugin Name: Social Login, Social Sharing by miniOrange
4
  * Plugin URI: https://www.miniorange.com/social-login
5
  * Description: Allow your users to login, comment and share with social login apps like Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
6
+ * Version: 7.1.3
7
  * Author: social login (miniOrange)
8
  * Author URI: https://www.miniorange.com/social-login
9
  * License: GPL2
14
  require('class-mo-openid-sso-customer.php');
15
  require('class-mo-openid-sso-shortcode-buttons.php');
16
  require('class-mo-openid-social-comment.php');
17
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.1.3');
18
  include dirname( __FILE__ ) . '/mo_openid_feedback_form.php';
19
  class Miniorange_OpenID_SSO {
20
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.miniorange.com
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.0
7
- Stable tag: 7.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -176,6 +176,9 @@ Please email us at info@miniorange.com. You can also submit your query from the
176
 
177
 
178
  == Changelog ==
 
 
 
179
  = 7.1.2 =
180
  * Added compatibility with Firefox latest version 63.0.3
181
  * Added compatibility with WordPress 5.0
@@ -596,6 +599,9 @@ Please email us at info@miniorange.com. You can also submit your query from the
596
  * First version of Social Login, Social Sharing plugin.
597
 
598
  == Upgrade Notice ==
 
 
 
599
  = 7.1.2 =
600
  * Added compatibility with Firefox latest version 63.0.3
601
  * Added compatibility with WordPress 5.0
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.0
7
+ Stable tag: 7.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
176
 
177
 
178
  == Changelog ==
179
+ = 7.1.3 =
180
+ * Minor bug fixes.
181
+
182
  = 7.1.2 =
183
  * Added compatibility with Firefox latest version 63.0.3
184
  * Added compatibility with WordPress 5.0
599
  * First version of Social Login, Social Sharing plugin.
600
 
601
  == Upgrade Notice ==
602
+ = 7.1.3 =
603
+ * Minor bug fixes.
604
+
605
  = 7.1.2 =
606
  * Added compatibility with Firefox latest version 63.0.3
607
  * Added compatibility with WordPress 5.0