@@ -232,7 +232,7 @@ class Main extends Singleton {
returnarray(
'success'=>true,
'message'=>sprintf(__('Job with action `%1$s` and arguments `%2$s` completed in %3$d seconds.','wp-cron-control-revisited'),$event['action'],serialize($event['args']),$time_end-$time_start),
'message'=>sprintf(__('Job with action `%1$s` and arguments `%2$s` completed in %3$d seconds.','wp-cron-control-revisited'),$event['action'],maybe_serialize($event['args']),$time_end-$time_start),
$entry=$wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE post_type = %s AND post_status = %s AND post_name = %s LIMIT 1",WP_Cron_Control_Revisited\Cron_Options_CPT::POST_TYPE,WP_Cron_Control_Revisited\Cron_Options_CPT::POST_STATUS,$post_name));
...
...
@@ -34,7 +34,7 @@ class WPCCR_Cron_Options_CPT_Test extends WP_UnitTestCase {