Skip to content

Commit b2ec3f0

Browse files
fix: phpcs
1 parent 8bd8ec8 commit b2ec3f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

includes/admin/feedzy-rss-feeds-admin.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function( $data, $page_slug ) {
9191
$this->add_banner_anchor();
9292
}
9393

94-
if ( in_array( $page_slug, array( 'imports', 'categories', 'settings' ) ) ) {
94+
if ( in_array( $page_slug, array( 'imports', 'categories', 'settings' ), true ) ) {
9595
apply_filters( 'themeisle_sdk_blackfriday_data', array( $this, 'set_black_friday_data' ), 99 );
9696
}
9797

@@ -2386,6 +2386,7 @@ public function set_black_friday_data( $config ) {
23862386

23872387
$license_data = get_option( 'feedzy_rss_feeds_pro_license_data', array() );
23882388

2389+
// translators: %1$s - discount, %2$s - product label.
23892390
$config['message'] = sprintf( __( 'Our biggest sale of the year: <strong>%1$s OFF</strong> on <strong>%2$s</strong>! Don\'t miss this limited-time offer.', 'feedzy-rss-feeds' ), $discount, $product_label );
23902391
$config['url'] = add_query_arg( array(
23912392
'utm_plugin' => feedzy_is_pro() ? 'feedzy-pro' : 'feedzy-rss-feeds',

0 commit comments

Comments
 (0)