Removed undefined variable

This commit is contained in:
Claudio Sanches 2020-04-01 19:22:44 -03:00
parent e61e865a4a
commit 5356fb1bf6
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ class WC_Admin_Status {
<?php
/* translators: %s: plugin author */
printf( esc_html__( 'by %s', 'woocommerce' ), esc_html( $plugin['author_name'] ) );
echo ' &ndash; ' . esc_html( $plugin['version'] ) . $version_string . $untested_string . $network_string; // WPCS: XSS ok.
echo ' &ndash; ' . esc_html( $plugin['version'] ) . $untested_string . $network_string; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
?>
</td>
</tr>