Content Blocks (Custom Post Widget) - Version 2.3.1

Version Description

Removed call to CUSTOM_POST_WIDGET_DIR

Download this release

Release Info

Developer vanderwijk
Plugin Icon 128x128 Content Blocks (Custom Post Widget)
Version 2.3.1
Comparing to
See all releases

Code changes from version 2.3 to 2.3.1

Files changed (3) hide show
  1. custom-post-widget.php +1 -1
  2. post-widget.php +1 -1
  3. readme.txt +3 -0
custom-post-widget.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Custom Post Widget
4
  Plugin URI: http://www.vanderwijk.com/wordpress/wordpress-custom-post-widget/
5
  Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode.
6
- Version: 2.3
7
  Author: Johan van der Wijk
8
  Author URI: http://www.vanderwijk.com
9
  License: GPL2
3
  Plugin Name: Custom Post Widget
4
  Plugin URI: http://www.vanderwijk.com/wordpress/wordpress-custom-post-widget/
5
  Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode.
6
+ Version: 2.3.1
7
  Author: Johan van der Wijk
8
  Author URI: http://www.vanderwijk.com
9
  License: GPL2
post-widget.php CHANGED
@@ -231,7 +231,7 @@ function check_post_type_and_remove_media_buttons() {
231
  }
232
  add_action( 'admin_head', 'check_post_type_and_remove_media_buttons' );
233
 
234
- require_once( CUSTOM_POST_WIDGET_DIR . '/popup.php' );
235
 
236
  // Only add content block popup action on page and post edit
237
  if( !defined( 'CUSTOM_POST_WIDGET_CURRENT_PAGE' ) )
231
  }
232
  add_action( 'admin_head', 'check_post_type_and_remove_media_buttons' );
233
 
234
+ require( 'popup.php' );
235
 
236
  // Only add content block popup action on page and post edit
237
  if( !defined( 'CUSTOM_POST_WIDGET_CURRENT_PAGE' ) )
readme.txt CHANGED
@@ -87,6 +87,9 @@ Creating and supporting this plugin takes up a lot of my free time, therefore I
87
 
88
  == Changelog ==
89
 
 
 
 
90
  = 2.3 =
91
  Various bugfixes and improvements.
92
 
87
 
88
  == Changelog ==
89
 
90
+ = 2.3.1 =
91
+ Removed call to CUSTOM_POST_WIDGET_DIR
92
+
93
  = 2.3 =
94
  Various bugfixes and improvements.
95