diff --git a/backend.php b/backend.php
index 5a88f38ac..e541c85c8 100644
--- a/backend.php
+++ b/backend.php
@@ -1379,9 +1379,10 @@
print "
";
- print "
Feeds with update errors:";
+ print "
+ Feeds with update errors (click to expand)";
- print "
";
+ print "";
while ($line = db_fetch_assoc($result)) {
print "- " . $line["title"] . " (" . $line["feed_url"] . "): " .
diff --git a/functions.js b/functions.js
index c696ae3e8..694ade06a 100644
--- a/functions.js
+++ b/functions.js
@@ -672,3 +672,14 @@ function getRelativeFeedId(list, id, direction) {
}
}
}
+
+function showBlockElement(id) {
+ var elem = document.getElementById(id);
+
+ if (elem) {
+ elem.style.display = "block";
+ } else {
+ alert("[showBlockElement] can't find element with id " + id);
+ }
+}
+
diff --git a/tt-rss.css b/tt-rss.css
index 6629f1caa..c801e671d 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -765,3 +765,8 @@ div.postHeader td.postDate {
text-align : right;
color : gray;
}
+
+#feedUpdateErrors {
+ display : none;
+}
+