Plugin Directory

Changeset 532303


Ignore:
Timestamp:
04/17/2012 02:55:17 PM (14 years ago)
Author:
mortay
Message:

2.2.8 - Changed cache system to accelerate page render.

Location:
social-counters/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • social-counters/trunk/counters/facebook.php

    r415823 r532303  
    3636        $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_facebook_v2', true);
    3737       
    38         if ( !is_single() && $share_counter_meta ) {
     38        if ( !is_single() && $share_counter_meta !== false ) {
    3939           
    4040            $shared_counter = $share_counter_meta;
  • social-counters/trunk/counters/google-buzz.php

    r391639 r532303  
    3636        $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_gbuzz_v2', true);
    3737       
    38         if ( !is_single() && $share_counter_meta ) {
     38        if ( !is_single() && $share_counter_meta !== false ) {
    3939           
    4040            $shared_counter = $share_counter_meta;
  • social-counters/trunk/counters/linkedin.php

    r417895 r532303  
    3636        $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_linkedin_v2', true);
    3737       
    38         if ( !is_single() && !empty($share_counter_meta) && $share_counter_meta !== false ) {
     38        if ( !is_single() && $share_counter_meta !== false ) {
    3939           
    4040            $shared_counter = $share_counter_meta;
  • social-counters/trunk/counters/meneame.php

    r391639 r532303  
    3636        $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_meneame_v2', true);
    3737       
    38         if ( !is_single() && $share_counter_meta ) {
     38        if ( !is_single() && $share_counter_meta !== false ) {
    3939           
    4040            $shared_counter = $share_counter_meta;
  • social-counters/trunk/counters/twitter.php

    r419870 r532303  
    3636        $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_twitter_v2', true);
    3737       
    38         if ( !is_single() && !empty($share_counter_meta) && $share_counter_meta !== false ) {
     38        if ( !is_single() && $share_counter_meta !== false ) {
    3939           
    4040            $shared_counter = $share_counter_meta;
  • social-counters/trunk/readme.txt

    r504256 r532303  
    33Tags: social, social bookmarking, counter, twitter, facebook, google, meneame, tuenti, bitacoras.com
    44Requires at least: 2.9
    5 Tested up to: 3.2.1
    6 Stable tag: 2.2.7
     5Tested up to: 3.3.1
     6Stable tag: 2.2.8
    77
    88It allows to place social sharing links with counters (if available) to the most popular social networks: Menéame,Twitter,Facebook,...
     
    5252== Changelog ==
    5353
     54= 2.2.8 =
     55* Changed cache system to increase page load speed.
     56
     57= 2.2.7 =
     58* Re-Tagged last version.
     59
     60= 2.2.6 =
     61* Repaired error in function called (plugin_dir_url)!! Sorry!!
     62       
     63= 2.2.5 =
     64* Changed plugin version in README!!
     65
     66= 2.2.4 =
     67* Repaired error with URLs from plugin and Domain Mapping.
     68* Repaired error with WPML and language load order.
     69
     70= 2.2.3 =
     71* Google Buzz counter deleted.
     72
    5473= 2.2.2 =
    5574* Repaired malfunction in Twitter counter
  • social-counters/trunk/social-counters.php

    r504256 r532303  
    44Plugin URI: http://blogestudio.com/plugin/social-counters/
    55Description:  Get Counters from Social Webs
    6 Version: 2.2.7
     6Version: 2.2.8
    77Author: Alejandro Carravedo (Blogestudio)
    88Author URI: http://blogestudio.com
     
    4444
    45452.2.7   - Re-Tagged last version.
     46
     472.2.8   - Cambio en el sistema de caché para acelerar la carga de las páginas.
    4648       
    4749*** Configuraciones ***
Note: See TracChangeset for help on using the changeset viewer.