From: Andrew Dolgov Date: Sat, 30 Sep 2006 06:12:53 +0000 (+0100) Subject: tweak feed display layout for tags X-Git-Tag: 1.2.4~68 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=08aef78132e9cc50ea88ccfc87afcac80b182eac;p=tt-rss.git tweak feed display layout for tags --- diff --git a/backend.php b/backend.php index 6e3fdcec..bbc62e13 100644 --- a/backend.php +++ b/backend.php @@ -347,6 +347,10 @@ ++$lnum; } + if (db_num_rows($result) == 0) { + print "
  • No feeds to display.
  • "; + } + } else { // tags @@ -360,6 +364,11 @@ select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid' ORDER BY tag_name"); */ + if (get_pref($link, 'ENABLE_FEED_CATS')) { + print "
  • Tags
  • "; + print "
  • \n"; } - print "
  • No $what to display.
  • "; + } print "";