From: Andrew Dolgov Date: Mon, 13 Jul 2015 20:06:42 +0000 (+0300) Subject: fix missing cdmFeedTitle X-Git-Tag: 16.3~222 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0d0cb8fe1e973f0c1cb5b08cc43da21e9edc5516;p=tt-rss.git fix missing cdmFeedTitle --- diff --git a/classes/feeds.php b/classes/feeds.php index 4effe3b7..996b1b23 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -451,13 +451,12 @@ class Feeds extends Handler_Protected { $vf_catchup_link = "".__('mark feed as read').""; - $feed_title_row = "
". + $reply['content'] .= "
". "
$feed_icon_img
". "". $line["feed_title"]." $vf_catchup_link
"; - array_push($reply['content'], array('id' => 0, 'kind' => 'feed_title', 'html' => $feed_title_row)); } } @@ -557,12 +556,11 @@ class Feeds extends Handler_Protected { //$feed_icon_img = "\"\""; } - $feed_title_row = "
". + $reply['content'] .= "
". "
$feed_icon_img
". "". $line["feed_title"]." $vf_catchup_link
"; - array_push($reply['content'], array('id' => 0, 'kind' => 'feed_title', 'html' => $feed_title_row)); } }