diff --git a/wp-admin/includes/credits.php b/wp-admin/includes/credits.php index c6ff5e79ea..833b676cec 100644 --- a/wp-admin/includes/credits.php +++ b/wp-admin/includes/credits.php @@ -154,7 +154,7 @@ function wp_credits_section_list( $credits = array(), $slug = '' ) { $data2x = get_avatar_data( $person_data[1] . '@md5.gravatar.com', array( 'size' => $size * 2 ) ); echo '' . "\n"; echo esc_html( $person_data[0] ) . "\n\t"; - if ( ! $compact ) { + if ( ! $compact && ! empty( $person_data[3] ) ) { // phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText echo '' . translate( $person_data[3] ) . "\n"; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 8e83ec830e..908f2f2c59 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51919'; +$wp_version = '5.9-alpha-51920'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.