From 349d95f27a1014615eeca5a61c23dd4853eceec9 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 30 May 2019 15:10:52 +0000 Subject: [PATCH] Docs: Add missing function documentation for `list_plugin_updates()`. Introduced in [9543]. Props priyankkpatel, mukesh27. Fixes #47424. Built from https://develop.svn.wordpress.org/trunk@45480 git-svn-id: http://core.svn.wordpress.org/trunk@45291 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 5 +++++ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index cf20226499..c1bf6e7aee 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -241,6 +241,11 @@ function core_upgrade_preamble() { dismissed_updates(); } +/** + * Display the upgrade plugins form. + * + * @since 2.7.0 + */ function list_plugin_updates() { $wp_version = get_bloginfo( 'version' ); $cur_wp_version = preg_replace( '/-.*$/', '', $wp_version ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 66b723ab14..41a0bed147 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45479'; +$wp_version = '5.3-alpha-45480'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.