summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 6bcebe598..6de5c9eda 100644
--- a/functions.php
+++ b/functions.php
@@ -737,8 +737,11 @@
$rtl_tag = "dir=\"ltr\"";
}
+ $error_notify_msg = "";
+
if ($last_error) {
$link_title = "Error: $last_error ($last_updated)";
+ $error_notify_msg = "(Error)";
} else if ($last_updated) {
$link_title = "Updated: $last_updated";
}
@@ -760,7 +763,12 @@
print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
(<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
-
+
+ if (get_pref($link, "EXTENDED_FEEDLIST")) {
+ print "<div class=\"feedExtInfo\">
+ <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
+ }
+
print "</li>";
}