tweak feed display layout for tags

This commit is contained in:
Andrew Dolgov 2006-09-30 07:12:53 +01:00
parent 8736c2d227
commit 08aef78132
1 changed files with 16 additions and 8 deletions

View File

@ -347,6 +347,10 @@
++$lnum;
}
if (db_num_rows($result) == 0) {
print "<li>No feeds to display.</li>";
}
} 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 "<li class=\"feedCat\">Tags</li>";
print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
}
$result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
FROM ttrss_user_entries WHERE int_id = post_int_id
AND unread = true)) AS count FROM ttrss_tags
@ -385,15 +394,14 @@
}
}
if (db_num_rows($result) == 0) {
if ($tags) {
$what = "tags";
} else {
$what = "feeds";
if (db_num_rows($result) == 0) {
print "<li>No tags to display.</li>";
}
print "<li>No $what to display.</li>";
if (get_pref($link, 'ENABLE_FEED_CATS')) {
print "</ul>\n";
}
}
print "</ul>";