Make WordPress Core

Ticket #40006: 40006.2.3.diff

File 40006.2.3.diff, 1.4 KB (added by audrasjb, 3 years ago)

Docs: Add missing parameters available in the in_plugin_update_message-{$file} filter. Follow-up to [51733].

  • src/wp-admin/includes/update.php

    diff --git a/src/wp-admin/includes/update.php b/src/wp-admin/includes/update.php
    index 29a5f0c783..0eae1130f8 100644
    a b function wp_plugin_update_row( $file, $plugin_data ) { 
    574574                 *     @type string $author_name Plugin author's name.
    575575                 *     @type bool   $update      Whether there's an available update. Default null.
    576576                 * }
    577                  * @param object $response {
    578                  *     An object of metadata about the available plugin update.
     577                 * @param array $response {
     578                 *     An array of metadata about the available plugin update.
    579579                 *
    580580                 *     @type int    $id          Plugin ID.
    581581                 *     @type string $slug        Plugin slug.
    582                  *     @type string $new_version New plugin version.
     582                 *     @type string $plugin      Plugin basename.
    583583                 *     @type string $url         Plugin URL.
    584584                 *     @type string $package     Plugin update package URL.
     585                 *     @type array  $icons       An array of icon URLs.
     586                 *     @type array  $banners     An array of banner URLs.
     587                 *     @type string $requires    Required WordPress version.
     588                 *     @type string $tested      Higher WordPress version the plugin has been tested with.
     589                 *     @type string $new_version New plugin version.
    585590                 * }
    586591                 */
    587592                do_action( "in_plugin_update_message-{$file}", $plugin_data, $response ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores