Editorial Calendar - Version 1.3.1

Version Description

  • Added an extra check so we aren't calling functions for supporting custom post types when they aren't available. This problem only happens on WordPress 2.9.X.
Download this release

Release Info

Developer zgrossbart
Plugin Icon wp plugin Editorial Calendar
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

Files changed (2) hide show
  1. edcal.php +2 -2
  2. readme.txt +4 -1
edcal.php CHANGED
@@ -18,7 +18,7 @@
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
- Version: 1.3
22
  Author: Colin Vernon, Justin Evans, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
@@ -55,7 +55,7 @@ $EDCAL_NONCE_ERROR = "6";
55
  * This boolean variable will be used to check whether this
56
  * installation of WordPress supports custom post types.
57
  */
58
- $edcal_supports_custom_types = function_exists('get_post_types');
59
 
60
  function edcal_load_language() {
61
  $plugin_dir = basename(dirname(__FILE__));
18
  /*
19
  Plugin Name: WordPress Editorial Calendar
20
  Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
21
+ Version: 1.3.1
22
  Author: Colin Vernon, Justin Evans, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
55
  * This boolean variable will be used to check whether this
56
  * installation of WordPress supports custom post types.
57
  */
58
+ $edcal_supports_custom_types = function_exists('get_post_types') && function_exists('get_post_type_object');
59
 
60
  function edcal_load_language() {
61
  $plugin_dir = basename(dirname(__FILE__));
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: cvernon, justinstresslimit, MaryVogt, zgrossbart
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.0.4
6
- Stable tag: 1.3
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
@@ -152,6 +152,9 @@ Moving published posts can cause problems with some RSS feeds and is generally n
152
 
153
  == Changelog ==
154
 
 
 
 
155
  = 1.3 =
156
  * The Editorial Calendar will now show up for each custom post type and support a separate calendar for each type.
157
  * We are now disabling the save button on the quick edit dialog after it is pressed and before the post saves to prevent duplicate posts if the user presses the button twice in a row.
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.0.4
6
+ Stable tag: 1.3.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
152
 
153
  == Changelog ==
154
 
155
+ = 1.3.1 =
156
+ * Added an extra check so we aren't calling functions for supporting custom post types when they aren't available. This problem only happens on WordPress 2.9.X.
157
+
158
  = 1.3 =
159
  * The Editorial Calendar will now show up for each custom post type and support a separate calendar for each type.
160
  * We are now disabling the save button on the quick edit dialog after it is pressed and before the post saves to prevent duplicate posts if the user presses the button twice in a row.