Social Media Share Buttons & Social Sharing Icons - Version 1.8.3

Version Description

  • Saving of links for custom icons sometimes didn't work. Fixed now.
Download this release

Release Info

Developer socialdude
Plugin Icon 128x128 Social Media Share Buttons & Social Sharing Icons
Version 1.8.3
Comparing to
See all releases

Code changes from version 1.8.2 to 1.8.3

libs/controllers/sfsi_buttons_controller.php CHANGED
@@ -96,17 +96,18 @@ function sfsi_options_updater2()
96
  {
97
  $esacpedUrls = array();
98
  $sfsi_customIconsUrl = $_POST["sfsi_custom_links"];
99
- foreach($sfsi_customIconsUrl as $sfsi_customIconUrl)
 
100
  {
101
- $esacpedUrls[] = esc_url($sfsi_customIconUrl);
102
- }
103
  }
104
  else
105
  {
106
  $esacpedUrls = '';
107
  }
108
  $sfsi_CustomIcon_links = isset($_POST["sfsi_custom_links"]) ? serialize($esacpedUrls) : '';
109
-
110
  $option2 = unserialize(get_option('sfsi_section2_options',false));
111
  $up_option2=array(
112
  'sfsi_rss_url' => esc_url($sfsi_rss_url),
96
  {
97
  $esacpedUrls = array();
98
  $sfsi_customIconsUrl = $_POST["sfsi_custom_links"];
99
+
100
+ foreach($sfsi_customIconsUrl as $key => $sfsi_customIconUrl)
101
  {
102
+ $esacpedUrls[$key] = esc_url($sfsi_customIconUrl);
103
+ }
104
  }
105
  else
106
  {
107
  $esacpedUrls = '';
108
  }
109
  $sfsi_CustomIcon_links = isset($_POST["sfsi_custom_links"]) ? serialize($esacpedUrls) : '';
110
+
111
  $option2 = unserialize(get_option('sfsi_section2_options',false));
112
  $up_option2=array(
113
  'sfsi_rss_url' => esc_url($sfsi_rss_url),
libs/sfsi_install_uninstall.php CHANGED
@@ -12,7 +12,7 @@ function sfsi_update_plugin()
12
  }
13
 
14
  //Install version
15
- update_option("sfsi_pluginVersion", "1.82");
16
 
17
 
18
  if(!get_option('sfsi_serverphpVersionnotification'))
12
  }
13
 
14
  //Install version
15
+ update_option("sfsi_pluginVersion", "1.83");
16
 
17
 
18
  if(!get_option('sfsi_serverphpVersionnotification'))
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: socialdude
3
  Tags: social media, share, buttons, social, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
4
  Requires at least: 2.8
5
- Tested up to: 4.9
6
- Stable tag: 1.8.2
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -267,6 +267,9 @@ You cannot use the same plugin twice, however you can install both the USM as we
267
 
268
  == Changelog ==
269
 
 
 
 
270
  = 1.8.2 =
271
  * Links updated
272
 
@@ -646,5 +649,5 @@ You cannot use the same plugin twice, however you can install both the USM as we
646
 
647
  == Upgrade Notice ==
648
 
649
- = 1.8.2 =
650
  Please upgrade
2
  Contributors: socialdude
3
  Tags: social media, share, buttons, social, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
4
  Requires at least: 2.8
5
+ Tested up to: 4.9.2
6
+ Stable tag: 1.8.3
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
267
 
268
  == Changelog ==
269
 
270
+ = 1.8.3 =
271
+ * Saving of links for custom icons sometimes didn't work. Fixed now.
272
+
273
  = 1.8.2 =
274
  * Links updated
275
 
649
 
650
  == Upgrade Notice ==
651
 
652
+ = 1.8.3 =
653
  Please upgrade
ultimate_social_media_icons.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://ultimatelysocial.com
5
  Description: Easy to use and 100% FREE social media plugin which adds social media icons to your website with tons of customization features!.
6
  Author: UltimatelySocial
7
  Author URI: http://ultimatelysocial.com
8
- Version: 1.8.2
9
  License: GPLv2 or later
10
  */
11
  global $wpdb;
@@ -52,7 +52,7 @@ register_activation_hook(__FILE__, 'sfsi_activate_plugin' );
52
  register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
53
  register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
54
 
55
- if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 1.82)
56
  {
57
  add_action("init", "sfsi_update_plugin");
58
  }
5
  Description: Easy to use and 100% FREE social media plugin which adds social media icons to your website with tons of customization features!.
6
  Author: UltimatelySocial
7
  Author URI: http://ultimatelysocial.com
8
+ Version: 1.8.3
9
  License: GPLv2 or later
10
  */
11
  global $wpdb;
52
  register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
53
  register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
54
 
55
+ if(!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 1.83)
56
  {
57
  add_action("init", "sfsi_update_plugin");
58
  }