Plugins: Use correct variable name in install_plugin_information().

Props afragen.
Fixes #43282. See #43192, #29274.

git-svn-id: https://develop.svn.wordpress.org/trunk@42686 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-02-10 22:07:40 +00:00
parent e4519b3444
commit 88d00c0fac

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 );