Skip to content

Commit

Permalink
Merge pull request #209 from crowdfavorite/3.1.1
Browse files Browse the repository at this point in the history
Update to 3.1.1 for additional permissions
  • Loading branch information
ejdanderson committed May 12, 2015
2 parents e961ad3 + 0aa33fd commit 6ec6660
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
**Contributors:** crowdfavorite, alexkingorg
**Tags:** comments, facebook, twitter, social, broadcast, import, integrate, integration
**Requires at least:** 3.8
**Tested up to:** 4.0
**Stable tag:** 3.1
**Tested up to:** 4.2
**Stable tag:** 3.1.1
**License:** GPLv2
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -321,6 +321,9 @@ Much to the consternation of developers everywhere, Twitter provides direct CDN

## Changelog ##

### 3.1.1 ###
* (fix) Add FB page permissions when requesting the app

### 3.1 ###
* Update functionality to use the latest facebook API, the old API is deprecated. This removes the aggregation by URL method, which means shares/likes not coming from the broadcasted post cannot be aggregated.

Expand Down
7 changes: 5 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: crowdfavorite, alexkingorg
Tags: comments, facebook, twitter, social, broadcast, import, integrate, integration
Requires at least: 3.8
Tested up to: 4.0
Stable tag: 3.1
Tested up to: 4.2
Stable tag: 3.1.1
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -307,6 +307,9 @@ Much to the consternation of developers everywhere, Twitter provides direct CDN

== Changelog ==

= 3.1.1 =
* (fix) Add FB page permissions when requesting the app

= 3.1 =
* Update functionality to use the latest facebook API, the old API is deprecated. This removes the aggregation by URL method, which means shares/likes not coming from the broadcasted post cannot be aggregated.

Expand Down
2 changes: 1 addition & 1 deletion social-facebook.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static function social_authorize_url($url, $key) {
if ($key == 'facebook') {
$perms = 'publish_actions';
if (is_admin()) {
$perms .= ',user_posts';
$perms .= ',user_posts,manage_pages,publish_pages';
}

$url = $url.'?req_perms='.$perms;
Expand Down
4 changes: 2 additions & 2 deletions social.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Social
Plugin URI: http://mailchimp.com/social-plugin-for-wordpress/
Description: 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>.
Version: 3.1
Version: 3.1.1
Author: Crowd Favorite
Author URI: http://crowdfavorite.com/
*/
Expand All @@ -25,7 +25,7 @@ final class Social {
/**
* @var string version number
*/
public static $version = '3.0';
public static $version = '3.1.1';

/**
* @var string CRON lock directory.
Expand Down

0 comments on commit 6ec6660

Please sign in to comment.