diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index 02282f46b..d3933ae77 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -240,6 +240,36 @@
}
+ if ($id == "feedUpdateErrors") {
+
+ print "
";
+
+ print "These feeds have not been updated because of errors:";
+
+ $result = db_query($link, "SELECT id,title,feed_url,last_error
+ FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
+
+ print "
";
+
+ while ($line = db_fetch_assoc($result)) {
+ print "- " . $line["title"] . " (" . $line["feed_url"] . "): " .
+ "" . $line["last_error"] . "";
+ }
+
+ print "
";
+ print "
";
+
+ print "