Editorial Calendar - Version 2.2.1

Version Description

Fixed a memory leak in the calendar where the calendar doesn't load if you have too many posts in your blog.

Download this release

Release Info

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

Code changes from version 2.2 to 2.2.1

Files changed (2) hide show
  1. edcal.php +2 -2
  2. readme.txt +5 -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: 2.2
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
@@ -624,7 +624,7 @@ class EdCal {
624
  */
625
  function edcal_getLastPost() {
626
  $args = array(
627
- 'posts_per_page' => -1,
628
  'post_parent' => null,
629
  'order' => 'DESC'
630
  );
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: 2.2.1
22
  Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
23
  Author URI: http://www.zackgrossbart.com
24
  Plugin URI: http://stresslimitdesign.com/editorial-calendar-plugin
624
  */
625
  function edcal_getLastPost() {
626
  $args = array(
627
+ 'posts_per_page' => 1,
628
  'post_parent' => null,
629
  'order' => 'DESC'
630
  );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.4.1
6
- Stable tag: 2.2
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
@@ -173,6 +173,10 @@ Moving published posts can cause problems with some RSS feeds and is generally n
173
 
174
  == Changelog ==
175
 
 
 
 
 
176
  = 2.2 =
177
 
178
  The calendar is using JavaScript compression to load less data and run faster.
3
  Tags: posts, post, calendar, AJAX, admin, administration
4
  Requires at least: 2.8.5
5
  Tested up to: 3.4.1
6
+ Stable tag: 2.2.1
7
 
8
  The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
9
 
173
 
174
  == Changelog ==
175
 
176
+ = 2.2.1 =
177
+
178
+ Fixed a memory leak in the calendar where the calendar doesn't load if you have too many posts in your blog.
179
+
180
  = 2.2 =
181
 
182
  The calendar is using JavaScript compression to load less data and run faster.