diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/news.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/news.php b/lib/news.php index 47fc46ac4..457ae2b12 100644 --- a/lib/news.php +++ b/lib/news.php @@ -235,7 +235,7 @@ function prepare_fresh_blog_post_titles($eng_planet_url, $eng_blog_url, $loc_pla // prepare fresh enough English blog posts if there's no English planet posts if (0 == count($fresh_eng_posts)) { $eng_blog_posts = get_feed($eng_blog_url . '?type=rss10', $req_quantity); - if (count($eng_blog_posts) > 1) { + if (count($eng_blog_posts) >= 1) { $eng_posts_title = _r('Blog'); $first_source = 4; foreach ($eng_blog_posts as $blog_post) { |