Changeset 481621
- Timestamp:
- 12/28/2011 08:33:13 PM (14 years ago)
- Location:
- wp-cron-control/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-cron-control.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-cron-control/trunk/readme.txt
r479133 r481621 31 31 == ChangeLog == 32 32 33 = Version 0.6 = 34 35 * Make sure that validated wp-cron-control requests also are valid in wp-cron.php by setting the global $doing_wp_cron value 36 33 37 = Version 0.5 = 34 38 -
wp-cron-control/trunk/wp-cron-control.php
r479133 r481621 5 5 Description: get control over wp-cron execution. 6 6 Author: Thorsten Ott, Automattic 7 Version: 0. 57 Version: 0.6 8 8 Author URI: http://hitchhackerguide.com 9 9 */ … … 260 260 // set a transient to allow locking down parallel requests 261 261 set_transient( 'doing_cron', $local_time ); 262 263 264 262 263 // make sure the request also validates in wp-cron.php 264 global $doing_wp_cron; 265 $doing_wp_cron = $local_time; 266 265 267 // if settings allow it validate if there are any scheduled posts without a cron event 266 268 if ( 1 == self::instance()->settings['enable_scheduled_post_validation'] ) {
Note: See TracChangeset
for help on using the changeset viewer.