diff --git a/readme.txt b/readme.txt index e4c7e587bfff77743fc03084dc3587f8128c26bb..f7b523913ca3f27b60c9b6095208d69b9f16b3ab 100644 --- a/readme.txt +++ b/readme.txt @@ -1,8 +1,8 @@ === WP-Cron Control === -Contributors: tott, automattic +Contributors: tott, ethitter, automattic Tags: wp-cron, cron, cron jobs, post missed schedule, scheduled posts Donate link: http://hitchhackerguide.com -Tested up to: 3.3 +Tested up to: 3.6 Stable tag: trunk This plugin allows you to take control over the execution of cron jobs. @@ -30,6 +30,10 @@ This plugin performs a `remove_action( 'sanitize_comment_cookies', 'wp_cron' );` == ChangeLog == += Version 0.7 = + +* Remove unneeded use of `$wpdb->prepare()` that triggered PHP warnings because a second argument wasn't provided. + = Version 0.6 = * Make sure that validated wp-cron-control requests also are valid in wp-cron.php by setting the global $doing_wp_cron value diff --git a/wp-cron-control.php b/wp-cron-control.php index b447b8d96d0d63be4db84d35399b7e856987b5f5..3651ea78b625f233a8111066f33153ed0ebecb59 100644 --- a/wp-cron-control.php +++ b/wp-cron-control.php @@ -4,7 +4,7 @@ Plugin URI: http://wordpress.org/extend/plugins/wp-cron-control/ Description: get control over wp-cron execution. Author: Thorsten Ott, Automattic - Version: 0.6 + Version: 0.7 Author URI: http://hitchhackerguide.com */