1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 08:21:28 +00:00

mark feeds with update errors in feedlist (closes #8)

This commit is contained in:
Andrew Dolgov
2005-12-16 18:35:04 +01:00
parent da47161fbd
commit 023fe0377d
4 changed files with 47 additions and 9 deletions

View File

@@ -596,9 +596,9 @@
function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link) {
if (file_exists($icon_file) && filesize($icon_file) > 0) {
$feed_icon = "<img src=\"$icon_file\">";
$feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
} else {
$feed_icon = "<img src=\"images/blank_icon.gif\">";
$feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
}
$feed = "<a href=\"javascript:viewfeed('$feed_id', 0);\">$feed_title</a>";