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:
parent
b1f48870d7
commit
903224cce4
|
@ -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 );
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue