Changeset 864593
- Timestamp:
- 02/25/2014 10:21:00 AM (12 years ago)
- Location:
- addthis/tags/3.5.9
- Files:
-
- 3 copied
-
. (copied) (copied from addthis/trunk)
-
addthis_social_widget.php (copied) (copied from addthis/trunk/addthis_social_widget.php) (3 diffs)
-
readme.txt (copied) (copied from addthis/trunk/readme.txt) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
addthis/tags/3.5.9/addthis_social_widget.php
r857043 r864593 24 24 * Plugin URI: http://www.addthis.com 25 25 * 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. 826 * Version: 3.5.9 27 27 * 28 28 * Author: The AddThis Team … … 48 48 define( 'addthis_style_default' , 'fb_tw_p1_sc'); 49 49 define( 'ADDTHIS_PLUGIN_VERSION' , '3.5.8'); 50 define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.5. 8');50 define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.5.9'); 51 51 define( 'ADDTHIS_ATVERSION', '300'); 52 52 define( 'ADDTHIS_ATVERSION_MANUAL_UPDATE', -1); … … 2427 2427 $profile = $options['profile']; 2428 2428 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 ); 2439 2431 $array = json_decode($server_output); 2440 2432 // check for pro user -
addthis/tags/3.5.9/readme.txt
r857043 r864593 4 4 Requires at least: 3.0 5 5 Tested up to: 3.8.1 6 Stable tag: 3.5. 86 Stable tag: 3.5.9 7 7 8 8 AddThis Share Buttons help drive traffic to your site by helping visitors share, bookmark and email your content to over 330 services. … … 76 76 77 77 == Changelog == 78 79 = 3.5.9 = 80 * CURL bug fix 78 81 79 82 = 3.5.8 = … … 259 262 == Upgrade Notice == 260 263 264 = 3.5.9 = 265 * CURL bug fix 266 261 267 = 3.5.8 = 262 268 Minor bug fix
Note: See TracChangeset
for help on using the changeset viewer.