Plugin Directory

Changeset 864593


Ignore:
Timestamp:
02/25/2014 10:21:00 AM (12 years ago)
Author:
srijith.v
Message:

Created tag 3.5.9.

Location:
addthis/tags/3.5.9
Files:
3 copied

Legend:

Unmodified
Added
Removed
  • addthis/tags/3.5.9/addthis_social_widget.php

    r857043 r864593  
    2424* Plugin URI: http://www.addthis.com
    2525* Description: Help your visitor promote your site! The AddThis Social Bookmarking Widget allows any visitor to bookmark your site easily with many popular services. Sign up for an AddThis.com account to see how your visitors are sharing your content--which services they're using for sharing, which content is shared the most, and more. It's all free--even the pretty charts and graphs.
    26 * Version: 3.5.8
     26* Version: 3.5.9
    2727*
    2828* Author: The AddThis Team
     
    4848define( 'addthis_style_default' , 'fb_tw_p1_sc');
    4949define( 'ADDTHIS_PLUGIN_VERSION' , '3.5.8');
    50 define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.5.8');
     50define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.5.9');
    5151define( 'ADDTHIS_ATVERSION', '300');
    5252define( 'ADDTHIS_ATVERSION_MANUAL_UPDATE', -1);
     
    24272427    $profile = $options['profile'];
    24282428    if ($profile) {
    2429         $ch = curl_init();
    2430         curl_setopt($ch, CURLOPT_URL, "http://q.addthis.com/feeds/1.0/config.json?pubid=" . $profile);
    2431 
    2432         // receive server response ...
    2433         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    2434 
    2435         // further processing ....
    2436         $server_output = curl_exec($ch);
    2437         curl_close($ch);
    2438 
     2429        $request = wp_remote_get( "http://q.addthis.com/feeds/1.0/config.json?pubid=" . $profile );
     2430        $server_output = wp_remote_retrieve_body( $request );
    24392431        $array = json_decode($server_output);
    24402432        // check for pro user
  • addthis/tags/3.5.9/readme.txt

    r857043 r864593  
    44Requires at least: 3.0
    55Tested up to: 3.8.1
    6 Stable tag: 3.5.8
     6Stable tag: 3.5.9
    77
    88AddThis Share Buttons help drive traffic to your site by helping visitors share, bookmark and email your content to over 330 services.
     
    7676
    7777== Changelog ==
     78
     79= 3.5.9 =
     80* CURL bug fix
    7881
    7982= 3.5.8 =
     
    259262== Upgrade Notice ==
    260263
     264= 3.5.9 =
     265* CURL bug fix
     266
    261267= 3.5.8 =
    262268Minor bug fix
Note: See TracChangeset for help on using the changeset viewer.