auto-patch 638-dev-dev01-2024-05-14T20_44_36

This commit is contained in:
root
2024-05-14 20:44:36 +00:00
parent a941559057
commit 5dbb0b284e
1812 changed files with 29671 additions and 14588 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "johnbillion/wp-crontrol",
"description": "WP Crontrol lets you view and control what's happening in the WP-Cron system.",
"description": "Take control of the cron events on your WordPress website",
"homepage": "https://wp-crontrol.com",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",

View File

@@ -1,9 +1,9 @@
# WP Crontrol
Contributors: johnbillion, scompt
Tags: cron, wp-cron, crontrol, debug
Tags: cron, wp-cron, crontrol, debug, woocommerce
Tested up to: 6.5
Stable tag: 1.16.2
Stable tag: 1.16.3
Donate link: https://github.com/sponsors/johnbillion
WP Crontrol enables you to take control of the cron events on your WordPress website.
@@ -45,7 +45,7 @@ WP Crontrol aims to be fully accessible to all of its users. [WP Crontrol's full
### Does this plugin work with PHP 8?
Yes, it's actively tested and working up to PHP 8.2.
Yes, it's actively tested and working up to PHP 8.3.
### I get the error "There was a problem spawning a call to the WP-Cron system on your site". How do I fix this?
@@ -191,6 +191,10 @@ The photo was taken by <a href="https://www.flickr.com/photos/michaelpardo/21453
## Changelog ##
### 1.16.3 ###
* Corrects the displayed PHP cron event name if one is provided
### 1.16.2 ###
* Security hardening: [An anti-tampering mechanism has been introduced for PHP cron events](https://wp-crontrol.com/help/check-php-cron-events/)
@@ -367,3 +371,10 @@ The photo was taken by <a href="https://www.flickr.com/photos/michaelpardo/21453
* Improvements to help text.
* Remove usage of `create_function()`.
* Fix some translator comments, improve i18n, improve coding standards.
### 1.5.0 ###
* Show the hooked actions for each cron event.
* Don't show the `Delete` link for core's built-in cron events, as they get re-populated immediately.
* Correct the success message after adding or editing PHP cron events.
* Correct the translations directory name.

View File

@@ -869,9 +869,10 @@ function admin_help_tab() {
$content .= '<li>';
$content .= wp_kses(
sprintf(
/* translators: %s: URL to the documentation */
__( '<a href="%s">Read the WP Crontrol website</a> which contains information about events that have missed their schedule, problems with spawning a call to the WP-Cron system, and much more.', 'wp-crontrol' ),
'https://wp-crontrol.com'
/* translators: 1: URL to the documentation, 2: WP Crontrol */
__( '<a href="%1$s">Read the %2$s website</a> which contains information about events that have missed their schedule, problems with spawning a call to the WP-Cron system, and much more.', 'wp-crontrol' ),
'https://wp-crontrol.com',
'WP Crontrol'
),
array(
'a' => array(

View File

@@ -536,9 +536,9 @@ class Table extends \WP_List_Table {
*/
protected function column_crontrol_hook( $event ) {
if ( 'crontrol_cron_job' === $event->hook ) {
if ( ! empty( $event->args['name'] ) ) {
if ( ! empty( $event->args[0]['name'] ) ) {
/* translators: %s: The name of the PHP cron event. */
$output = esc_html( sprintf( __( 'PHP Cron (%s)', 'wp-crontrol' ), $event->args['name'] ) );
$output = esc_html( sprintf( __( 'PHP Cron (%s)', 'wp-crontrol' ), $event->args[0]['name'] ) );
} else {
$output = esc_html__( 'PHP Cron', 'wp-crontrol' );
}

View File

@@ -3,7 +3,7 @@
'name' => 'johnbillion/wp-crontrol',
'pretty_version' => 'dev-release',
'version' => 'dev-release',
'reference' => 'a52f6b3fb76b62d7d87ce10696807014a92f373d',
'reference' => '39aaf91c685c7cf2c8e05c0cc857f5a7ad777040',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@@ -13,7 +13,7 @@
'johnbillion/wp-crontrol' => array(
'pretty_version' => 'dev-release',
'version' => 'dev-release',
'reference' => 'a52f6b3fb76b62d7d87ce10696807014a92f373d',
'reference' => '39aaf91c685c7cf2c8e05c0cc857f5a7ad777040',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),

View File

@@ -2,10 +2,10 @@
/**
* Plugin Name: WP Crontrol
* Plugin URI: https://wp-crontrol.com
* Description: WP Crontrol enables you to view and control what's happening in the WP-Cron system.
* Description: Take control of the cron events on your WordPress website.
* Author: John Blackbourn
* Author URI: https://wp-crontrol.com
* Version: 1.16.2
* Version: 1.16.3
* Text Domain: wp-crontrol
* Domain Path: /languages/
* Requires at least: 5.6
@@ -36,7 +36,7 @@
namespace Crontrol;
const PLUGIN_FILE = __FILE__;
const WP_CRONTROL_VERSION = '1.16.2';
const WP_CRONTROL_VERSION = '1.16.3';
if ( ! defined( 'ABSPATH' ) ) {
exit;