Plugins: Use correct variable name in `install_plugin_information()`.

Props afragen.
Fixes #43282. See #43192, #29274.
Built from https://develop.svn.wordpress.org/trunk@42686


git-svn-id: http://core.svn.wordpress.org/trunk@42514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-02-10 22:08:30 +00:00
parent b1f48870d7
commit 903224cce4
2 changed files with 2 additions and 2 deletions

View File

@ -721,7 +721,7 @@ if ( ! empty( $api->contributors ) ) {
foreach ( (array) $api->contributors as $contrib_username => $contrib_details ) {
$contrib_name = $contrib_details['display_name'];
if ( ! $contrib_name ) {
$contrin_name = $contrib_username;
$contrib_name = $contrib_username;
}
$contrib_name = esc_html( $contrib_name );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42685';
$wp_version = '5.0-alpha-42686';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.