WP Facebook Auto Publish - Version 1.2.3

Version Description

= Facebook Auto Publish 1.0.1 = If you had issues with default image used for auto publishing, you may apply this upgrade.

= Facebook Auto Publish 1.0 = First official launch.

Download this release

Release Info

Developer f1logic
Plugin Icon 128x128 WP Facebook Auto Publish
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

admin/authorization.php CHANGED
@@ -19,7 +19,7 @@ if(isset($_POST['fb_auth']))
19
 
20
  $dialog_url = "https://www.facebook.com/".XYZ_FBAP_FB_API_VERSION."/dialog/oauth?client_id="
21
  . $app_id . "&redirect_uri=" . $my_url . "&state="
22
- . $xyz_fbap_session_state . "&scope=email,user_about_me,offline_access,publish_pages,user_posts,publish_stream,publish_actions,manage_pages";
23
 
24
  header("Location: " . $dialog_url);
25
  }
19
 
20
  $dialog_url = "https://www.facebook.com/".XYZ_FBAP_FB_API_VERSION."/dialog/oauth?client_id="
21
  . $app_id . "&redirect_uri=" . $my_url . "&state="
22
+ . $xyz_fbap_session_state . "&scope=email,user_about_me,publish_pages,user_posts,publish_actions,manage_pages";
23
 
24
  header("Location: " . $dialog_url);
25
  }
admin/settings.php CHANGED
@@ -543,7 +543,6 @@ function dethide(id)
543
  'echo' => 0,
544
  'selected' => '1 3',
545
  'hierarchical' => 1,
546
- 'name' => 'xyz_fbap_catlist',
547
  'id' => 'xyz_fbap_catlist',
548
  'class' => 'postform',
549
  'depth' => 0,
@@ -552,7 +551,10 @@ function dethide(id)
552
  'hide_if_empty' => false );
553
 
554
  if(count(get_categories($args))>0)
 
 
555
  echo str_replace( "<select", "<select multiple onClick=setcat(this) style='width:200px;height:auto !important;border:1px solid #cccccc;'", wp_dropdown_categories($args));
 
556
  else
557
  echo "NIL";
558
 
543
  'echo' => 0,
544
  'selected' => '1 3',
545
  'hierarchical' => 1,
 
546
  'id' => 'xyz_fbap_catlist',
547
  'class' => 'postform',
548
  'depth' => 0,
551
  'hide_if_empty' => false );
552
 
553
  if(count(get_categories($args))>0)
554
+ {
555
+ $args['name']='xyz_fbap_catlist';
556
  echo str_replace( "<select", "<select multiple onClick=setcat(this) style='width:200px;height:auto !important;border:1px solid #cccccc;'", wp_dropdown_categories($args));
557
+ }
558
  else
559
  echo "NIL";
560
 
facebook-auto-publish.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Facebook Auto Publish
4
  Plugin URI: http://xyzscripts.com/wordpress-plugins/facebook-auto-publish/
5
  Description: Publish posts automatically from your blog to Facebook social media. You can publish your posts to Facebook as simple text message, text message with image or as attached link to your blog. The plugin supports filtering posts by custom post-types and categories.
6
- Version: 1.2.2
7
  Author: xyzscripts.com
8
  Author URI: http://xyzscripts.com/
9
  License: GPLv2 or later
3
  Plugin Name: Facebook Auto Publish
4
  Plugin URI: http://xyzscripts.com/wordpress-plugins/facebook-auto-publish/
5
  Description: Publish posts automatically from your blog to Facebook social media. You can publish your posts to Facebook as simple text message, text message with image or as attached link to your blog. The plugin supports filtering posts by custom post-types and categories.
6
+ Version: 1.2.3
7
  Author: xyzscripts.com
8
  Author URI: http://xyzscripts.com/
9
  License: GPLv2 or later
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: f1logic
3
  Donate link: http://xyzscripts.com/donate/
4
  Tags: facebook, facebook auto publish, publish post to facebook, add link to facebook, facebook publishing, post to facebook, post to fb, social media auto publish, social media publishing, social network auto publish, social media, social network
5
  Requires at least: 2.8
6
- Tested up to: 4.1.2
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
 
10
  Publish posts automatically to Facebook page or profile.
@@ -122,6 +122,10 @@ More questions ? [Drop a mail](http://xyzscripts.com/members/support/ "XYZScript
122
 
123
  == Changelog ==
124
 
 
 
 
 
125
  = Facebook Auto Publish 1.2.2 =
126
  * Bug fix for duplicate publishing of scheduled posts
127
 
3
  Donate link: http://xyzscripts.com/donate/
4
  Tags: facebook, facebook auto publish, publish post to facebook, add link to facebook, facebook publishing, post to facebook, post to fb, social media auto publish, social media publishing, social network auto publish, social media, social network
5
  Requires at least: 2.8
6
+ Tested up to: 4.2.1
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
 
10
  Publish posts automatically to Facebook page or profile.
122
 
123
  == Changelog ==
124
 
125
+ = Facebook Auto Publish 1.2.3 =
126
+ * Fixed category display issue
127
+ * Removed outdated facebook scopes from authorization
128
+
129
  = Facebook Auto Publish 1.2.2 =
130
  * Bug fix for duplicate publishing of scheduled posts
131