Skip to content

Commit 9060c46

Browse files
fix: linter
1 parent aac5316 commit 9060c46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2592,7 +2592,7 @@ public function validate_feed() {
25922592
continue;
25932593
}
25942594

2595-
if ( $items === 0 ) {
2595+
if ( 0 === $items ) {
25962596
$results[] = array(
25972597
'url' => $feed_url,
25982598
'status' => 'warning',
@@ -2604,8 +2604,8 @@ public function validate_feed() {
26042604
$results[] = array(
26052605
'url' => $feed_url,
26062606
'status' => 'success',
2607-
/* translators: %d is the number of items found in the feed */
26082607
'message' => $title . sprintf(
2608+
/* translators: %d is the number of items found in the feed */
26092609
_n(
26102610
'%d item found',
26112611
'%d items found',

0 commit comments

Comments
 (0)