]> git.wh0rd.org - tt-rss.git/commitdiff
fix dashboard feed
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 13 Jul 2015 15:43:54 +0000 (18:43 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 13 Jul 2015 15:43:54 +0000 (18:43 +0300)
classes/feeds.php

index fb9413ffd2977dff47f97b700f5a8403779414a6..f91a7925ca9fc2e64fe2fbde80ffa2937278bc1e 100644 (file)
@@ -960,9 +960,10 @@ class Feeds extends Handler_Protected {
                $reply['headlines']['is_cat'] = false;
 
                $reply['headlines']['toolbar'] = '';
-               $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
 
-               $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
+               $headline_row = "<div class='whiteBox'>".__('No feed selected.');
+
+               $headline_row .= "<p><span class=\"insensitive\">";
 
                $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'] .= "<br/>";
-                       $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
+                       $headline_row .= "<br/>";
+                       $headline_row .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
                                __('Some feeds have update errors (click for details)')."</a>";
                }
-               $reply['headlines']['content'] .= "</span></p>";
+               $headline_row .= "</span></p>";
+
+               $reply['headlines']['content'] = array(array("kind" => "status_message", "html" => $headline_row));
 
                $reply['headlines-info'] = array("count" => 0,
                        "vgroup_last_feed" => '',