From 6b32516bd0a851c117f785fa7208a6164cdea46f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 12 Nov 2010 18:46:27 +0300 Subject: do not show subtoolbar when no headlines are available --- functions.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index f3e6a62e7..7727a0a8f 100644 --- a/functions.php +++ b/functions.php @@ -5079,10 +5079,13 @@ return; } - print_headline_subtoolbar($link, $feed_site_url, $feed_title, - $feed, $cat_view, $search, $match_on, $search_mode, $view_mode); + if (db_num_rows($result) > 0) { + print_headline_subtoolbar($link, $feed_site_url, $feed_title, + $feed, $cat_view, $search, $match_on, $search_mode, $view_mode); + + print "
"; - print "
"; + } } $headlines_count = db_num_rows($result); @@ -5554,7 +5557,7 @@ } if (!$offset) { - print "
"; + if ($headlines_count > 0) print "
"; print ""; } -- cgit v1.2.3