Social Share WordPress Plugin – AccessPress Social Share - Version 4.2.7

Version Description

  • Done the url, title and summary parameter url encoded for linkedin as it is producing error in some IE version of a browser.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Share WordPress Plugin – AccessPress Social Share
Version 4.2.7
Comparing to
See all releases

Code changes from version 4.2.6 to 4.2.7

accesspress-social-share.php CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
4
  Plugin name: Social Share WordPress Plugin - 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.2.6
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain: accesspress-social-share
@@ -30,7 +30,7 @@ if ( !defined( 'APSS_LANG_DIR' ) ) {
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
- define( 'APSS_VERSION', '4.2.6' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
4
  Plugin name: Social Share WordPress Plugin - 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.2.7
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain: accesspress-social-share
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
+ define( 'APSS_VERSION', '4.2.7' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
inc/frontend/content-filter.php CHANGED
@@ -108,7 +108,7 @@ foreach ( $options['social_networks'] as $key => $value ) {
108
  if($url_check['scheme'] == 'https'){
109
  $flag=TRUE;
110
  }else{
111
- $flag=FALSE;
112
  }
113
 
114
  if($flag == TRUE){
@@ -205,7 +205,7 @@ foreach ( $options['social_networks'] as $key => $value ) {
205
 
206
  //couter available for linkedin
207
  case 'linkedin':
208
- $link = "http://www.linkedin.com/shareArticle?mini=true&title=" . $title . "&url=" . $url . "&summary=" . $excerpt;
209
  $count = $this->get_count( $key, $url );
210
  ////////////////////////////////////////
211
  if(isset($http_url_checked) && $http_url_checked=='1'){
108
  if($url_check['scheme'] == 'https'){
109
  $flag=TRUE;
110
  }else{
111
+ $flag=FALSE;
112
  }
113
 
114
  if($flag == TRUE){
205
 
206
  //couter available for linkedin
207
  case 'linkedin':
208
+ $link = "http://www.linkedin.com/shareArticle?mini=true&title=" . urlencode($title) . "&url=" . urlencode($url) . "&summary=" . urlencode($excerpt);
209
  $count = $this->get_count( $key, $url );
210
  ////////////////////////////////////////
211
  if(isset($http_url_checked) && $http_url_checked=='1'){
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: 4.7
7
- Stable tag: 4.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -141,13 +141,16 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
141
  6. Backend Miscellaneous Settings Section
142
 
143
  == Changelog ==
 
 
 
144
  = 4.2.6 =
145
  * Fixed css issues for the plugin's backend settings - miscelleneous settings of the plugin.
146
 
147
  = 4.2.5 =
148
  * Checked plugin compactibility with wordpress version 4.7
149
 
150
- = 4.2.4 =
151
  * Removed unnecessary codes from plugin's main file.
152
 
153
  = 4.2.3 =
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.7
7
+ Stable tag: 4.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
141
  6. Backend Miscellaneous Settings Section
142
 
143
  == Changelog ==
144
+ = 4.2.7 =
145
+ * Done the url, title and summary parameter url encoded for linkedin as it is producing error in some IE version of a browser.
146
+
147
  = 4.2.6 =
148
  * Fixed css issues for the plugin's backend settings - miscelleneous settings of the plugin.
149
 
150
  = 4.2.5 =
151
  * Checked plugin compactibility with wordpress version 4.7
152
 
153
+ = 4.2.4 =
154
  * Removed unnecessary codes from plugin's main file.
155
 
156
  = 4.2.3 =