Helper: Fix duplicate product output

This commit is contained in:
Konstantin Kovshenin 2017-05-24 13:04:52 +03:00
parent dc2360711f
commit a1b3d2834b
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@
<tr>
<td>
<?php /* translators: %1$s: product name, %2$s: product version */ ?>
<?php printf( __( '%1$s<br>%1$s installed', 'woocommerce' ), esc_html( $data['Name'] ), esc_html( $data['Version'] ) ); ?>
<?php printf( __( '%1$s<br>%2$s installed', 'woocommerce' ), esc_html( $data['Name'] ), esc_html( $data['Version'] ) ); ?>
<?php if ( ! $update_available ) : ?>
<?php _e( '(latest)', 'woocommerce' ); ?>
<?php endif; ?>