Version Description
- General bug fixes and refinement in code
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Share WordPress Plugin – AccessPress Social Share |
Version | 4.4.9 |
Comparing to | |
See all releases |
Code changes from version 4.4.8 to 4.4.9
- accesspress-social-share.php +1 -1
- inc/backend/save-settings.php +1 -1
- readme.txt +4 -1
accesspress-social-share.php
CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
|
4 |
Plugin name:AccessPress Social Share
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
|
6 |
Description: A plugin to add various social media shares to a site with dynamic configuration options.
|
7 |
-
Version: 4.4.
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain: accesspress-social-share
|
4 |
Plugin name:AccessPress Social Share
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
|
6 |
Description: A plugin to add various social media shares to a site with dynamic configuration options.
|
7 |
+
Version: 4.4.9
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain: accesspress-social-share
|
inc/backend/save-settings.php
CHANGED
@@ -13,7 +13,7 @@ $apss_share_settings[ 'share_options' ] = $share_options;
|
|
13 |
$apss_share_settings[ 'social_icon_set' ] = sanitize_text_field($_POST[ 'apss_share_settings' ][ 'social_icon_set' ]);
|
14 |
$apss_share_settings[ 'share_positions' ] = sanitize_text_field($_POST[ 'apss_share_settings' ][ 'social_share_position_options' ]);
|
15 |
|
16 |
-
$apss_social_newtwork_order = explode( ',', sanitize_array($_POST[ 'apss_social_newtwork_order' ]) );
|
17 |
$social_network_array = array();
|
18 |
foreach ( $apss_social_newtwork_order as $social_network ) {
|
19 |
$social_network_array[ $social_network ] = (isset( $_POST[ 'social_networks' ][ $social_network ] )) ? 1 : 0;
|
13 |
$apss_share_settings[ 'social_icon_set' ] = sanitize_text_field($_POST[ 'apss_share_settings' ][ 'social_icon_set' ]);
|
14 |
$apss_share_settings[ 'share_positions' ] = sanitize_text_field($_POST[ 'apss_share_settings' ][ 'social_share_position_options' ]);
|
15 |
|
16 |
+
$apss_social_newtwork_order = explode( ',', APSS_Class::sanitize_array($_POST[ 'apss_social_newtwork_order' ]) );
|
17 |
$social_network_array = array();
|
18 |
foreach ( $apss_social_newtwork_order as $social_network ) {
|
19 |
$social_network_array[ $social_network ] = (isset( $_POST[ 'social_networks' ][ $social_network ] )) ? 1 : 0;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: social share counter, social share, social media share, social network sha
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.2.8
|
7 |
-
Stable tag: 4.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -156,6 +156,9 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
|
|
156 |
|
157 |
== Changelog ==
|
158 |
|
|
|
|
|
|
|
159 |
= 4.4.8 =
|
160 |
* Refinement in plugin to avoid trademark infringement
|
161 |
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.2.8
|
7 |
+
Stable tag: 4.4.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
156 |
|
157 |
== Changelog ==
|
158 |
|
159 |
+
= 4.4.9 =
|
160 |
+
* General bug fixes and refinement in code
|
161 |
+
|
162 |
= 4.4.8 =
|
163 |
* Refinement in plugin to avoid trademark infringement
|
164 |
|