From b830cca7eedce4cc277d57e4c3770984cb529de6 Mon Sep 17 00:00:00 2001 From: Joschasa Date: Thu, 21 Mar 2013 20:22:04 +0100 Subject: [PATCH 1/2] In "normal mode" don't show feed title, when articles are grouped by feed Got removed here: https://github.com/gothfox/Tiny-Tiny-RSS/commit/e17e99fbcf62f2e347ce771a795be3237521f6b5 --- classes/feeds.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/classes/feeds.php b/classes/feeds.php index b8ef1f544..779614dce 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -450,12 +450,14 @@ class Feeds extends Handler_Protected { $reply['content'] .= ""; - if (@$line["feed_title"]) { + if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED')) { + if (@$line["feed_title"]) { $reply['content'] .= ""; } + } $reply['content'] .= "$updated_fmt"; $reply['content'] .= "
"; From 051174c39e42d9cf24e0bc796338b351d552e197 Mon Sep 17 00:00:00 2001 From: Joschasa Date: Thu, 21 Mar 2013 20:35:10 +0100 Subject: [PATCH 2/2] Don't wrap feed title in "normal" mode. --- tt-rss.css | 1 + 1 file changed, 1 insertion(+) diff --git a/tt-rss.css b/tt-rss.css index a6c511967..9fc52b209 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -485,6 +485,7 @@ div.hlFeed, div.hlFeed a { color : gray; font-style : italic; font-weight : normal; + white-space: nowrap; } div.hlFeed a:hover {