Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccahum committed Dec 10, 2024
1 parent d2821a6 commit 9e9acfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vip-jetpack/vip-jetpack.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,9 @@ function vip_filter_plugin_version_jetpack( $plugin_meta, $plugin_file ) {
}

if ( 'jetpack.php' === $plugin_file ) {
$type = defined( 'WPCOM_VIP_JETPACK_LOCAL' ) && constant( 'WPCOM_VIP_JETPACK_LOCAL' ) ? '(Local)' : '';
$type = defined( 'WPCOM_VIP_JETPACK_LOCAL' ) && constant( 'WPCOM_VIP_JETPACK_LOCAL' ) ? '(Local)' : '';
/* translators: Loaded Jetpack version number */
$plugin_meta[0] = sprintf( esc_html__( 'Version %s %s' ), constant( 'JETPACK__VERSION' ), $type );
$plugin_meta[0] = sprintf( esc_html__( 'Version %1$s %2$s' ), constant( 'JETPACK__VERSION' ), $type );
remove_filter( 'plugin_row_meta', 'vip_filter_plugin_version_jetpack', PHP_INT_MAX, 2 );
}

Expand Down

0 comments on commit 9e9acfe

Please sign in to comment.