mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 13:41:24 +01:00
Docs: Clarify the usage of null
for auto_update_{$type}
filter.
The value is internally used to detect whether nothing has hooked into this filter. Props audrasjb, pbiron, johnbillion, SergeyBiryukov. Fixes #50848. Built from https://develop.svn.wordpress.org/trunk@48909 git-svn-id: http://core.svn.wordpress.org/trunk@48671 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
06fc8fa3f5
commit
94555079eb
@ -195,8 +195,10 @@ class WP_Automatic_Updater {
|
||||
* adjust core updates.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 5.5.0 The `$update` parameter accepts the value of null.
|
||||
*
|
||||
* @param bool $update Whether to update.
|
||||
* @param bool|null $update Whether to update. The value of null is internally used
|
||||
* to detect whether nothing has hooked into this filter.
|
||||
* @param object $item The update offer.
|
||||
*/
|
||||
$update = apply_filters( "auto_update_{$type}", $update, $item );
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-48908';
|
||||
$wp_version = '5.6-alpha-48909';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user