Social Login - Version 7.3.3

Version Description

  • Minor UI changes.
  • Fixed add-on update value issue.
Download this release

Release Info

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

Code changes from version 7.3.2 to 7.3.3

miniorange_openid_sso_settings.php CHANGED
@@ -4,12 +4,12 @@
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, Apple, Twitter, LinkedIn etc using customizable buttons.
7
- * Version: 7.3.2
8
  * Author: miniOrange
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.3.2');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
@@ -115,7 +115,7 @@ class miniorange_openid_sso_settings
115
  add_option('moopenid_logo_check_account','1');
116
  add_option( 'mo_openid_email_enable', '1');
117
  add_option( 'mo_openid_tour_new','0');
118
- add_option( 'mo_openid_deactivate_reason',0);
119
 
120
  add_option('mo_openid_user_activation_date','0');
121
  //GDPR options
@@ -696,11 +696,10 @@ Thank you.';
696
 
697
  update_option('mo_openid_message',"Your response is submitted successfully");
698
  mo_openid_show_success_message();
699
- update_option('mo_openid_feedback_form',1);
700
  }
701
  }
702
  }
703
- update_option('mo_openid_feedback_form',1);
704
  deactivate_plugins( '/miniorange-login-openid/miniorange_openid_sso_settings.php' );
705
  update_option('mo_openid_message',"Plugin Deactivated Successfully");
706
  mo_openid_show_success_message();
@@ -792,7 +791,7 @@ Thank you.';
792
 
793
 
794
  function mo_openid_feedback_request(){
795
- if(get_option('mo_openid_deactivate_reason')=='0')
796
  mo_openid_display_feedback_form();
797
  }
798
  function mo_openid_add_social_share_links($content) {
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, Apple, Twitter, LinkedIn etc using customizable buttons.
7
+ * Version: 7.3.3
8
  * Author: miniOrange
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.3.3');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
115
  add_option('moopenid_logo_check_account','1');
116
  add_option( 'mo_openid_email_enable', '1');
117
  add_option( 'mo_openid_tour_new','0');
118
+ add_option( 'mo_openid_deactivate_reason_form',0);
119
 
120
  add_option('mo_openid_user_activation_date','0');
121
  //GDPR options
696
 
697
  update_option('mo_openid_message',"Your response is submitted successfully");
698
  mo_openid_show_success_message();
 
699
  }
700
  }
701
  }
702
+ update_option('mo_openid_deactivate_reason_form',1);
703
  deactivate_plugins( '/miniorange-login-openid/miniorange_openid_sso_settings.php' );
704
  update_option('mo_openid_message',"Plugin Deactivated Successfully");
705
  mo_openid_show_success_message();
791
 
792
 
793
  function mo_openid_feedback_request(){
794
+ if(get_option('mo_openid_deactivate_reason_form')=='0')
795
  mo_openid_display_feedback_form();
796
  }
797
  function mo_openid_add_social_share_links($content) {
mo-openid-social-login-functions.php CHANGED
@@ -1325,9 +1325,9 @@ function update_custom_data($user_id)
1325
  }
1326
  }
1327
  if ($type != "checkbox") {
1328
- if(get_option('mo_customer_validation_mo_social_login_enable')=="1" && get_option('mo_openid_customised_field_enable') == "1" )
1329
- array_push($cust_reg_val,[$field_update=>$_POST[$field]]);
1330
- else
1331
  update_user_meta($user_id, $field_update, $_POST[$field]);
1332
  } else {
1333
  $flag = 0;
@@ -1341,9 +1341,9 @@ function update_custom_data($user_id)
1341
  }
1342
  $a++;
1343
  }
1344
- if(get_option('mo_customer_validation_mo_social_login_enable')=="1" && get_option('mo_openid_customised_field_enable') == "1" )
1345
- array_push($cust_reg_val,[$field_update=>$res]);
1346
- else
1347
  update_user_meta($user_id, $field_update, $res);
1348
  }
1349
  }
1325
  }
1326
  }
1327
  if ($type != "checkbox") {
1328
+ // if(get_option('mo_customer_validation_mo_social_login_enable')=="1" && get_option('mo_openid_customised_field_enable') == "1" )
1329
+ // array_push($cust_reg_val,[$field_update=>$_POST[$field]]);
1330
+ // else
1331
  update_user_meta($user_id, $field_update, $_POST[$field]);
1332
  } else {
1333
  $flag = 0;
1341
  }
1342
  $a++;
1343
  }
1344
+ // if(get_option('mo_customer_validation_mo_social_login_enable')=="1" && get_option('mo_openid_customised_field_enable') == "1" )
1345
+ // array_push($cust_reg_val,[$field_update=>$res]);
1346
+ // else
1347
  update_user_meta($user_id, $field_update, $res);
1348
  }
1349
  }
mo_openid_feedback_form.php CHANGED
@@ -27,7 +27,6 @@
27
  <p style="margin-left:2%">
28
 
29
  <?php
30
- update_option('mo_openid_deactivate_reason',1);
31
  $deactivate_reasons = array(
32
  "Not Working",
33
  "Facebook Login Error",
27
  <p style="margin-left:2%">
28
 
29
  <?php
 
30
  $deactivate_reasons = array(
31
  "Not Working",
32
  "Facebook Login Error",
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WordPress Social Login (Facebook, Google, Twitter) ===
2
  Contributors: vkontakte, sociallogin, cyberlord92
3
  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.3
7
- Stable tag: 7.3.2
8
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
 
10
  Social Login with Google, Facebook, Apple, Twitter, Reddit, Vkontakte, LinkedIn and more. GDPR compliant. Social sharing and social comments. 24x7 Support.
@@ -177,6 +177,10 @@ Please email us at info@miniorange.com. You can also submit your query from the
177
 
178
 
179
  == Changelog ==
 
 
 
 
180
  = 7.3.2 =
181
  * Updated Yahoo API.
182
  * Updated feedback on deactivation.
@@ -689,6 +693,10 @@ SECURITY FIXES
689
  * First version of Social Login, Social Sharing plugin.
690
 
691
  == Upgrade Notice ==
 
 
 
 
692
  = 7.3.2 =
693
  * Updated Yahoo API.
694
  * Updated feedback on deactivation.
1
  === WordPress Social Login (Facebook, Google, Twitter) ===
2
  Contributors: vkontakte, sociallogin, cyberlord92
3
  Donate link: https://www.miniorange.com
4
+ Tags: social login, facebook login, google login, twitter login, Vkontakte login, Woocommerce, 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.3
7
+ Stable tag: 7.3.3
8
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
 
10
  Social Login with Google, Facebook, Apple, Twitter, Reddit, Vkontakte, LinkedIn and more. GDPR compliant. Social sharing and social comments. 24x7 Support.
177
 
178
 
179
  == Changelog ==
180
+ = 7.3.3 =
181
+ * Minor UI changes.
182
+ * Fixed add-on update value issue.
183
+
184
  = 7.3.2 =
185
  * Updated Yahoo API.
186
  * Updated feedback on deactivation.
693
  * First version of Social Login, Social Sharing plugin.
694
 
695
  == Upgrade Notice ==
696
+ = 7.3.3 =
697
+ * Minor UI changes.
698
+ * Fixed add-on update value issue.
699
+
700
  = 7.3.2 =
701
  * Updated Yahoo API.
702
  * Updated feedback on deactivation.
uninstall.php CHANGED
@@ -61,7 +61,7 @@ delete_option('mo_openid_social_comment_google_label' );
61
  delete_option('mo_openid_social_comment_heading_label' );
62
  delete_option('app_pos' );
63
  delete_option('app_pos_premium');
64
- delete_option('mo_openid_deactivate_reason');
65
 
66
  delete_option('mo_share_options_enable_post');
67
  delete_option('mo_share_options_enable_home_page');
61
  delete_option('mo_openid_social_comment_heading_label' );
62
  delete_option('app_pos' );
63
  delete_option('app_pos_premium');
64
+ delete_option('mo_openid_deactivate_reason_form');
65
 
66
  delete_option('mo_share_options_enable_post');
67
  delete_option('mo_share_options_enable_home_page');