diff --git src/wp-admin/includes/update.php src/wp-admin/includes/update.php
index e7a8b5e..768bca3 100644
|
|
function wp_plugin_update_row( $file, $plugin_data ) { |
440 | 440 | * @type string $author_name Plugin author's name. |
441 | 441 | * @type bool $update Whether there's an available update. Default null. |
442 | 442 | * } |
443 | | * @param array $response { |
444 | | * An array of metadata about the available plugin update. |
| 443 | * @param object $response { |
| 444 | * An object of metadata about the available plugin update. |
445 | 445 | * |
446 | 446 | * @type int $id Plugin ID. |
447 | 447 | * @type string $slug Plugin slug. |
448 | 448 | * @type string $new_version New plugin version. |
449 | 449 | * @type string $url Plugin URL. |
450 | 450 | * @type string $package Plugin update package URL. |
| 451 | * @type string $tested Latest WordPress version it is tested on. |
451 | 452 | * } |
452 | 453 | */ |
453 | 454 | do_action( "in_plugin_update_message-{$file}", $plugin_data, $response ); |