summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-16 18:35:04 +0100
committerAndrew Dolgov <[email protected]>2005-12-16 18:35:04 +0100
commit023fe0377d698287c25e59da0f282b108957540e (patch)
tree89c83b457fefd587df15282952067193e95112b6 /functions.php
parentda47161fbd303aa5a6b7c512a094fa03d48ea619 (diff)
mark feeds with update errors in feedlist (closes #8)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index 5a4683bf9..78238a069 100644
--- a/functions.php
+++ b/functions.php
@@ -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>";