Plugin Directory

Changeset 1800851


Ignore:
Timestamp:
01/10/2018 11:18:54 PM (8 years ago)
Author:
brianbrey
Message:

Update 1.4.3

Location:
easy-social-share-buttons/trunk
Files:
4 edited

Legend:

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

    r1712294 r1800851  
    22/*
    33 * Plugin Name: Easy Social Share Buttons
    4  * Version: 1.4.2
     4 * Version: 1.4.3
    55 * Plugin URI: http://www.idiom.co/
    66 * Description: Easily add social sharing buttons to your posts and images without slowing down your site with unnecessary javascript and image files.
  • easy-social-share-buttons/trunk/includes/class-easy-social-share-buttons-settings.php

    r1671080 r1800851  
    151151                    'description'   => __( 'Select which sharing buttons you would like to display.', 'easy-social-share-buttons' ),
    152152                    'type'          => 'checkbox_multi',
    153                     'options'       => array( 'facebook' => 'Facebook', 'pinterest' => 'Pinterest', 'email' => 'Email', 'link' => 'Direct Link'),
     153                    'options'       => array( 'pinterest' => 'Pinterest', 'email' => 'Email', 'link' => 'Direct Link'),
    154154                    'default'       => array( 'facebook', 'pinterest' )
    155155                )
  • easy-social-share-buttons/trunk/includes/class-easy-social-share-buttons.php

    r1712294 r1800851  
    499499            case 'twitter':
    500500
     501                //$title = str_replace( '&', '%26', $title );
     502                //$title = str_replace( '&', '%26', $title );
     503
    501504                $query = array(
    502505                    'text' => apply_filters( 'update_easy_social_share_twitter_text', $title . ' ' . $link )
     
    504507
    505508                $popup_url = 'http://twitter.com/intent/tweet?' . http_build_query($query, null, '&', PHP_QUERY_RFC3986);
     509                $popup_url = str_replace( '%23038%3B', '', $popup_url);
     510
    506511                $svg_viewbox = '0 0 1024 1024';
    507512                $svg = '<path d="M1024 194.418c-37.676 16.708-78.164 28.002-120.66 33.080 43.372-26 76.686-67.17 92.372-116.23-40.596 24.078-85.556 41.56-133.41 50.98-38.32-40.83-92.922-66.34-153.346-66.34-116.022 0-210.088 94.058-210.088 210.078 0 16.466 1.858 32.5 5.44 47.878-174.6-8.764-329.402-92.4-433.018-219.506-18.084 31.028-28.446 67.116-28.446 105.618 0 72.888 37.088 137.192 93.46 174.866-34.438-1.092-66.832-10.542-95.154-26.278-0.020 0.876-0.020 1.756-0.020 2.642 0 101.788 72.418 186.696 168.522 206-17.626 4.8-36.188 7.372-55.348 7.372-13.538 0-26.698-1.32-39.528-3.772 26.736 83.46 104.32 144.206 196.252 145.896-71.9 56.35-162.486 89.934-260.916 89.934-16.958 0-33.68-0.994-50.116-2.94 92.972 59.61 203.402 94.394 322.042 94.394 386.422 0 597.736-320.124 597.736-597.744 0-9.108-0.206-18.168-0.61-27.18 41.056-29.62 76.672-66.62 104.836-108.748z"></path>';
  • easy-social-share-buttons/trunk/readme.txt

    r1712294 r1800851  
    44Requires at least: 3.9
    55Tested up to: 4.5.2
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 1.4.3 =
     47* 2018-01-10
     48* Remove Facebook media share button
     49* Fixed bug where ampersands not encoded correctly for Twitter
    4550
    4651= 1.4.2 =
Note: See TracChangeset for help on using the changeset viewer.