Changeset 419870
- Timestamp:
- 08/05/2011 06:57:48 PM (15 years ago)
- Location:
- social-counters/trunk
- Files:
-
- 3 edited
-
counters/twitter.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
social-counters.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-counters/trunk/counters/twitter.php
r415823 r419870 161 161 162 162 $url_request_params = ''; 163 if ( !empty($data) ) {164 $data = unserialize($data);163 if ( !empty($data) && function_exists('json_decode') ) { 164 $data = json_decode($data); 165 165 166 if ( isset($data ['count']))167 $shared_counter = $data ['count'];166 if ( isset($data->count) && $data->count > $shared_counter ) 167 $shared_counter = $data->count; 168 168 } 169 169 -
social-counters/trunk/readme.txt
r418620 r419870 4 4 Requires at least: 2.9 5 5 Tested up to: 3.2.1 6 Stable tag: 2.2. 06 Stable tag: 2.2.2 7 7 8 8 It allows to place social sharing links with counters (if available) to the most popular social networks: Menéame,Twitter,Facebook,... … … 52 52 == Changelog == 53 53 54 = 2.2.2 = 55 * Repaired malfunction in Twitter counter 56 54 57 = 2.2.1 = 55 58 * Updated CSS Version -
social-counters/trunk/social-counters.php
r418620 r419870 4 4 Plugin URI: http://blogestudio.com/plugin/social-counters/ 5 5 Description: Get Counters from Social Webs 6 Version: 2.2. 06 Version: 2.2.2 7 7 Author: Alejandro Carravedo (Blogestudio) 8 8 Author URI: http://blogestudio.com … … 31 31 32 32 2.2.1 - Actualizada version del CSS 33 34 2.2.2 - Reparado "desperfecto" en el contador de Twitter. 33 35 34 36 *** Configuraciones ***
Note: See TracChangeset
for help on using the changeset viewer.