Changeset 864756
- Timestamp:
- 02/25/2014 02:56:52 PM (12 years ago)
- Location:
- addthis-follow/trunk
- Files:
-
- 2 edited
-
addthis-follow.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
addthis-follow/trunk/addthis-follow.php
r857049 r864756 25 25 * Plugin URI: http://www.addthis.com 26 26 * Description: Generate followers for your social networks and track what pages are generating the most followers 27 * Version: 1.2. 527 * Version: 1.2.6 28 28 * 29 29 * Author: The AddThis Team 30 30 * Author URI: http://www.addthis.com/blog 31 31 */ 32 define( 'ADDTHIS_FOLLOW_PLUGIN_VERSION' , '1.2. 5');32 define( 'ADDTHIS_FOLLOW_PLUGIN_VERSION' , '1.2.6'); 33 33 define( 'ADDTHIS_FOLLOW_PRODUCT_VERSION' , 'wpp'); 34 34 define( 'ADDTHIS_FOLLOW_ATVERSION', '300'); … … 568 568 $profile = $options['profile']; 569 569 if ($profile) { 570 $ch = curl_init(); 571 curl_setopt($ch, CURLOPT_URL, "http://q.addthis.com/feeds/1.0/config.json?pubid=" . $profile); 572 573 // receive server response ... 574 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 575 576 // further processing .... 577 $server_output = curl_exec($ch); 578 curl_close($ch); 579 570 $request = wp_remote_get( "http://q.addthis.com/feeds/1.0/config.json?pubid=" . $profile ); 571 $server_output = wp_remote_retrieve_body( $request ); 580 572 $array = json_decode($server_output); 581 573 // check for pro user -
addthis-follow/trunk/readme.txt
r857049 r864756 4 4 Requires at least: 2.9 5 5 Tested up to: 3.8.1 6 Stable tag: 1.2. 56 Stable tag: 1.2.6 7 7 8 8 AddThis Follow Buttons help visitors follow your social profiles on Facebook, Twitter, Pinterest, Google+, LinkedIn and other social networks. … … 69 69 70 70 == Changelog == 71 72 = 1.2.6 = 73 * Support for servers without CURL 74 71 75 = 1.2.5 = 72 76 * Minor bug fix
Note: See TracChangeset
for help on using the changeset viewer.