From b830cca7eedce4cc277d57e4c3770984cb529de6 Mon Sep 17 00:00:00 2001 From: Joschasa Date: Thu, 21 Mar 2013 20:22:04 +0100 Subject: 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(-) (limited to 'classes') 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'] .= "
"; -- cgit v1.2.3