Plugin Directory

Changeset 619699


Ignore:
Timestamp:
11/01/2012 01:58:35 AM (13 years ago)
Author:
remix4
Message:

2.4.5

Location:
slick-social-share-buttons
Files:
55 added
3 edited

Legend:

Unmodified
Added
Removed
  • slick-social-share-buttons/trunk/dcwp_slick_social_buttons.php

    r614905 r619699  
    77Author: Lee Chestnutt
    88Author URI: http://www.designchemical.com
    9 Version: 2.4.4
     9Version: 2.4.5
    1010*/
    1111
  • slick-social-share-buttons/trunk/inc/dcwp_social.php

    r614905 r619699  
    182182        $size = $this->get_dcssb_default('size_twitter');
    183183        $classSize = $size == 'horizontal' || $size == 'none' ? 'size-small' : 'size-box' ;
    184         $short_link = $this->dcssb_url_shortener($link) ? $this->dcssb_url_shortener($link) : $link ;
     184        $shortener = $this->get_dcssb_default('shortener');
     185        if($shortener != 'none'){
     186            $short_link = $this->dcssb_url_shortener($link) ? $this->dcssb_url_shortener($link) : $link ;
     187        } else {
     188            $short_link = $link;
     189        }
    185190       
    186191        if($this->get_dcssb_default('incTwitter')){
  • slick-social-share-buttons/trunk/readme.txt

    r614905 r619699  
    55Requires at least: 3.0
    66Tested up to: 3.4.2
    7 Stable tag: 2.4.4
     7Stable tag: 2.4.5
    88
    99Slick social share buttons adds facebook, twitter, google +1, linkedin, digg, delicious, reddit, stumbleupon, buffer and pinterest pin it social media buttons in a floating or slide out tab. Includes a social statistics page in the plugin admin panel showing summaries of all share totals
     
    126126== Changelog ==
    127127
     128= 2.4.5 =
     129* Fixed: Reset URL shortener when "none" selected
     130
    128131= 2.4.4 =
    129132* Add: Code to reload jquery plugins if overwritten
Note: See TracChangeset for help on using the changeset viewer.