WP Embed Facebook - Version 1.5.3

Version Description

  • fixed Warning in admin
Download this release

Release Info

Developer poxtron
Plugin Icon 128x128 WP Embed Facebook
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-embed-fb.php +2 -3
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: poxtron
3
  Donate link: http://www.saliuitl.org/en/wp-embed-facebook/donate
4
  Tags: Facebook, facebook, Social Plugins, embed facebook, facebook video, facebook posts, facebook publication, facebook publications, facebook event, facebook events, facebook pages, facebook page, facebook profiles, facebook album, facebook albums, facebook photos, facebook photo, social,
5
  Requires at least: 3.8.1
6
- Tested up to: 3.8.1
7
- Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -68,6 +68,9 @@ In Settings > Embed Facebook.
68
 
69
  == Changelog ==
70
 
 
 
 
71
  = 1.5 =
72
  * Support for raw videos and photos
73
  * Support for albums
3
  Donate link: http://www.saliuitl.org/en/wp-embed-facebook/donate
4
  Tags: Facebook, facebook, Social Plugins, embed facebook, facebook video, facebook posts, facebook publication, facebook publications, facebook event, facebook events, facebook pages, facebook page, facebook profiles, facebook album, facebook albums, facebook photos, facebook photo, social,
5
  Requires at least: 3.8.1
6
+ Tested up to: 3.9.1
7
+ Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.5.3 =
72
+ * fixed Warning in admin
73
+
74
  = 1.5 =
75
  * Support for raw videos and photos
76
  * Support for albums
wp-embed-fb.php CHANGED
@@ -1,14 +1,14 @@
1
  <?php
2
  /**
3
  * @package WP_Embed_Facebook
4
- * @version 1.5.2
5
  */
6
  /*
7
  Plugin Name: WP Embed Facebook
8
  Plugin URI: http://www.wpembedfb.com
9
  Description: Embed a Facebook video, photo, album, event, page, profile, or post. Copy any facebook url to a single line on your post, or use shortcode [facebook='url' width='' ] more info @ <a href="http://www.wpembedfb.com" title="plugin website">www.wpembedfb.com</a>
10
  Author: Miguel Sirvent
11
- Version: 1.5.2
12
  Author URI: http://profiles.wordpress.org/poxtron/
13
  */
14
 
@@ -37,7 +37,6 @@ add_shortcode('facebook', array('WP_Embed_FB','shortcode') );
37
  if(is_admin()){
38
  require_once WPEMFBDIR.'/lib/admin.php';
39
  add_action('admin_menu', array('EmbFbAdmin','add_page'));
40
- add_action('admin_init', array('EmbFbAdmin','admin_init'));
41
  }
42
 
43
  ?>
1
  <?php
2
  /**
3
  * @package WP_Embed_Facebook
4
+ * @version 1.5.3
5
  */
6
  /*
7
  Plugin Name: WP Embed Facebook
8
  Plugin URI: http://www.wpembedfb.com
9
  Description: Embed a Facebook video, photo, album, event, page, profile, or post. Copy any facebook url to a single line on your post, or use shortcode [facebook='url' width='' ] more info @ <a href="http://www.wpembedfb.com" title="plugin website">www.wpembedfb.com</a>
10
  Author: Miguel Sirvent
11
+ Version: 1.5.3
12
  Author URI: http://profiles.wordpress.org/poxtron/
13
  */
14
 
37
  if(is_admin()){
38
  require_once WPEMFBDIR.'/lib/admin.php';
39
  add_action('admin_menu', array('EmbFbAdmin','add_page'));
 
40
  }
41
 
42
  ?>