WP Crontrol - Version 1.9.1

Version Description

Download this release

Release Info

Developer johnbillion
Plugin Icon 128x128 WP Crontrol
Version 1.9.1
Comparing to
See all releases

Code changes from version 1.9.0 to 1.9.1

Files changed (2) hide show
  1. readme.md +5 -1
  2. wp-crontrol.php +6 -2
readme.md CHANGED
@@ -4,7 +4,7 @@ Contributors: johnbillion, scompt
4
  Tags: cron, wp-cron, crontrol, debug
5
  Requires at least: 4.1
6
  Tested up to: 5.6
7
- Stable tag: 1.9.0
8
  Requires PHP: 5.3
9
  Donate link: https://github.com/sponsors/johnbillion
10
 
@@ -142,6 +142,10 @@ The cron commands which were previously included in WP Crontrol are now part of
142
 
143
  ## Changelog ##
144
 
 
 
 
 
145
  ### 1.9.0 ###
146
 
147
  * Add filters and sorting to the event listing screen. Props @yuriipavlov.
4
  Tags: cron, wp-cron, crontrol, debug
5
  Requires at least: 4.1
6
  Tested up to: 5.6
7
+ Stable tag: 1.9.1
8
  Requires PHP: 5.3
9
  Donate link: https://github.com/sponsors/johnbillion
10
 
142
 
143
  ## Changelog ##
144
 
145
+ ### 1.9.1 ###
146
+
147
+ * Fix the adding of new cron events when `DISALLOW_FILE_EDIT` is true.
148
+
149
  ### 1.9.0 ###
150
 
151
  * Add filters and sorting to the event listing screen. Props @yuriipavlov.
wp-crontrol.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: WP Crontrol enables you to view and control what's happening in the WP-Cron system.
6
  * Author: John Blackbourn & crontributors
7
  * Author URI: https://github.com/johnbillion/wp-crontrol/graphs/contributors
8
- * Version: 1.9.0
9
  * Text Domain: wp-crontrol
10
  * Domain Path: /languages/
11
  * Requires PHP: 5.3.6
@@ -26,7 +26,7 @@
26
  *
27
  * @package wp-crontrol
28
  * @author John Blackbourn <john@johnblackbourn.com> & Edward Dale <scompt@scompt.com>
29
- * @copyright Copyright 2008 Edward Dale, 2012-2020 John Blackbourn
30
  * @license http://www.gnu.org/licenses/gpl.txt GPL 2.0
31
  * @link https://wordpress.org/plugins/wp-crontrol/
32
  * @since 0.2
@@ -1080,6 +1080,10 @@ function show_cron_form( $editing ) {
1080
  </td>
1081
  </tr>
1082
  <?php
 
 
 
 
1083
  }
1084
 
1085
  if ( $is_editing_php || $can_add_php ) {
5
  * Description: WP Crontrol enables you to view and control what's happening in the WP-Cron system.
6
  * Author: John Blackbourn & crontributors
7
  * Author URI: https://github.com/johnbillion/wp-crontrol/graphs/contributors
8
+ * Version: 1.9.1
9
  * Text Domain: wp-crontrol
10
  * Domain Path: /languages/
11
  * Requires PHP: 5.3.6
26
  *
27
  * @package wp-crontrol
28
  * @author John Blackbourn <john@johnblackbourn.com> & Edward Dale <scompt@scompt.com>
29
+ * @copyright Copyright 2008 Edward Dale, 2012-2021 John Blackbourn
30
  * @license http://www.gnu.org/licenses/gpl.txt GPL 2.0
31
  * @link https://wordpress.org/plugins/wp-crontrol/
32
  * @since 0.2
1080
  </td>
1081
  </tr>
1082
  <?php
1083
+ } else {
1084
+ ?>
1085
+ <input type="hidden" name="action" value="new_cron"/>
1086
+ <?php
1087
  }
1088
 
1089
  if ( $is_editing_php || $can_add_php ) {