diff --git a/classes/feeds.php b/classes/feeds.php index fb9413ffd..f91a7925c 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -960,9 +960,10 @@ class Feeds extends Handler_Protected { $reply['headlines']['is_cat'] = false; $reply['headlines']['toolbar'] = ''; - $reply['headlines']['content'] = "
";
+ $headline_row = " ";
$result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
WHERE owner_uid = " . $_SESSION['uid']);
@@ -970,7 +971,7 @@ class Feeds extends Handler_Protected {
$last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
$last_updated = make_local_datetime($last_updated, false);
- $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
+ $headline_row .= sprintf(__("Feeds last updated at %s"), $last_updated);
$result = $this->dbh->query("SELECT COUNT(id) AS num_errors
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
@@ -978,11 +979,13 @@ class Feeds extends Handler_Protected {
$num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
if ($num_errors > 0) {
- $reply['headlines']['content'] .= "
";
- $reply['headlines']['content'] .= "".
+ $headline_row .= "
";
+ $headline_row .= "".
__('Some feeds have update errors (click for details)')."";
}
- $reply['headlines']['content'] .= "