1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 15:21:29 +00:00

tweak feed errors notification

This commit is contained in:
Andrew Dolgov
2006-12-01 07:26:05 +01:00
parent d96d11f4ff
commit a3656a415f
4 changed files with 46 additions and 21 deletions

View File

@@ -710,31 +710,16 @@
if ($quiet) return;
// print "<h3>Edit Feeds</h3>";
$result = db_query($link, "SELECT id,title,feed_url,last_error
$result = db_query($link, "SELECT COUNT(id) AS num_errors
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
if (db_num_rows($result) > 0) {
print "<div class=\"warning\">";
// print"<img class=\"closeButton\"
// onclick=\"javascript:hideParentElement(this);\" src=\"images/close.png\">";
print "<a href=\"javascript:showBlockElement('feedUpdateErrors')\">
<b>Some feeds have update errors (click for details)</b></a>";
$num_errors = db_fetch_result($result, 0, "num_errors");
print "<ul id=\"feedUpdateErrors\" class=\"nomarks\">";
while ($line = db_fetch_assoc($result)) {
print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " .
$line["last_error"];
}
print "</ul>";
print "</div>";
if ($num_errors > 0) {
print "<a href=\"javascript:showFeedsWithErrors()\"
class=\"feedUpdErrLink\">Some feeds have update errors (click
for details)</a>";
}
$feed_search = db_escape_string($_GET["search"]);