summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 23:48:44 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 23:48:44 +0400
commit9d9432dab87e3887e4f482ac5afff1586530c692 (patch)
treecc3b1124d9352471f4a489163510dddb28be4fba /classes
parentd98e76d9c2d6f0e5ef7ca4f9ef32bc6f7daf8ea2 (diff)
parent043dacd3b1d39fe1eedecc2ab40f6bc153df3684 (diff)
Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS
Diffstat (limited to 'classes')
-rw-r--r--classes/feeds.php4
1 files changed, 3 insertions, 1 deletions
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'] .= "<span class=\"hlUpdated\">";
- if (@$line["feed_title"]) {
+ if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
+ if (@$line["feed_title"]) {
$reply['content'] .= "<div class=\"hlFeed\">
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a>
</div>";
}
+ }
$reply['content'] .= "$updated_fmt</span>";
$reply['content'] .= "<div class=\"hlRight\">";