Plugin Directory

Changeset 829993

Timestamp:
12/30/2013 04:31:30 AM (11 years ago)
Author:
alexkingorg
Message:

version 2.11

Location:
social/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • social/trunk/README.txt

    r826742 r829993  
    44Requires at least: 3.8
    55Tested up to: 3.8
    6 Stable tag: 2.10
     6Stable tag: 2.1
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    143143If you want to hook into a CRON for extra functionality for a service, all you have to do is add an action:
    144144
    145     <?php add_action('social_cron_15', array('Your_Class', 'your_method')); ?>
     145    <?php add_action('social15', array('Your_Class', 'your_method')); ?>
    146146
    147147= Does the proxy application have access to my passwords now? =
     
    268268    add_action('social_approve_likes_and_retweets', '__return_true');
    269269
     270
     271
     272
     273
    270274== Screenshots ==
    271275
     
    282286
    283287== Upgrade Notice ==
     288
     289
     290
     291
    284292
    285293= 2.10 =
     
    294302
    295303== Changelog ==
     304
     305
     306
     307
    296308
    297309= 2.10 =
  • social/trunk/lib/social/controller/cron.php

    r826742 r829993  
    4141        Social::log('Attempting semaphore lock');
    4242        if ($semaphore->lock()) {
    43             Social::log('Running social_cron_15_action.');
     43            Social::log('Running social.');
    4444            do_action('socialcron15');
    4545            $semaphore->unlock();
  • social/trunk/social.php

    r826742 r829993  
    44Plugin URI: http://mailchimp.com/social-plugin-for-wordpress/
    55Description: Broadcast newly published posts and pull in discussions using integrations with Twitter and Facebook. Brought to you by <a href="http://mailchimp.com">MailChimp</a>.
    6 Version: 2.10
     6Version: 2.1
    77Author: Crowd Favorite
    88Author URI: http://crowdfavorite.com/
     
    2626     * @var  string  version number
    2727     */
    28     public static $version = '2.10';
     28    public static $version = '2.1';
    2929
    3030    /**
Note: See TracChangeset for help on using the changeset viewer.