From 50e2499c2c29ee5f7c38c63abc8cf82426c90298 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Wed, 2 Feb 2022 23:20:29 +0000 Subject: [PATCH] Upgrade: Add follow up ticket ID to `upgrade_590()` comment. Follow up to [52656]. Props audrasjb. See #54906. git-svn-id: https://develop.svn.wordpress.org/trunk@52662 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/upgrade.php b/src/wp-admin/includes/upgrade.php index 8c3fc97cf1..88900bc400 100644 --- a/src/wp-admin/includes/upgrade.php +++ b/src/wp-admin/includes/upgrade.php @@ -2275,7 +2275,7 @@ function upgrade_590() { $crons = _get_cron_array(); if ( $crons && is_array( $crons ) ) { - // Remove errant `false` values, see #53950. + // Remove errant `false` values, see #53950, #54906. $crons = array_filter( $crons ); _set_cron_array( $crons ); }