Version Description
This version fixes an error with the drafts drawer that broke compatibility with WordPress 5.0.
Download this release
Release Info
Developer | zgrossbart |
Plugin | Editorial Calendar |
Version | 3.7.2 |
Comparing to | |
See all releases |
Code changes from version 3.7.1 to 3.7.2
- edcal.php +2 -2
- readme.txt +6 -2
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: 3.7.
|
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
|
@@ -1059,7 +1059,7 @@ class EdCal {
|
|
1059 |
$my_post['post_title'] = isset($_POST["title"])?wp_strip_all_tags($_POST["title"]):null;
|
1060 |
$my_post['post_content'] = isset($_POST["content"])?$_POST["content"]:null;
|
1061 |
|
1062 |
-
if ($edcal_date_gmt != '0000-00-00 00:00:00'
|
1063 |
/*
|
1064 |
* We don't want to set a date if this a new post in the drafts
|
1065 |
* drawer since WordPress 3.5 will reject new posts with a 0000
|
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: 3.7.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
|
1059 |
$my_post['post_title'] = isset($_POST["title"])?wp_strip_all_tags($_POST["title"]):null;
|
1060 |
$my_post['post_content'] = isset($_POST["content"])?$_POST["content"]:null;
|
1061 |
|
1062 |
+
if ($edcal_date_gmt != '0000-00-00 00:00:00') {
|
1063 |
/*
|
1064 |
* We don't want to set a date if this a new post in the drafts
|
1065 |
* drawer since WordPress 3.5 will reject new posts with a 0000
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
|
3 |
Tags: posts, post, calendar, AJAX, admin, administration
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 3.7.
|
7 |
|
8 |
The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
|
9 |
|
@@ -195,6 +195,10 @@ The `edcal_default_status` property controls the default status for new posts in
|
|
195 |
|
196 |
== Changelog ==
|
197 |
|
|
|
|
|
|
|
|
|
198 |
= 3.7.1 =
|
199 |
|
200 |
We now have an option so you can choose if you want to scroll the calendar with the mouse wheel or not.
|
2 |
Contributors: cvernon, justinstresslimit, jkudish, MaryVogt, zgrossbart
|
3 |
Tags: posts, post, calendar, AJAX, admin, administration
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 5.0
|
6 |
+
Stable tag: 3.7.2
|
7 |
|
8 |
The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
|
9 |
|
195 |
|
196 |
== Changelog ==
|
197 |
|
198 |
+
= 3.7.2 =
|
199 |
+
|
200 |
+
This version fixes an error with the drafts drawer that broke compatibility with WordPress 5.0.
|
201 |
+
|
202 |
= 3.7.1 =
|
203 |
|
204 |
We now have an option so you can choose if you want to scroll the calendar with the mouse wheel or not.
|