In "normal mode" don't show feed title, when articles are grouped by feed
Got removed here: e17e99fbcf
This commit is contained in:
parent
3a693fa76f
commit
b830cca7ee
1 changed files with 3 additions and 1 deletions
|
@ -450,12 +450,14 @@ class Feeds extends Handler_Protected {
|
||||||
|
|
||||||
$reply['content'] .= "<span class=\"hlUpdated\">";
|
$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\">
|
$reply['content'] .= "<div class=\"hlFeed\">
|
||||||
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
||||||
$line["feed_title"]."</a>
|
$line["feed_title"]."</a>
|
||||||
</div>";
|
</div>";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$reply['content'] .= "$updated_fmt</span>";
|
$reply['content'] .= "$updated_fmt</span>";
|
||||||
$reply['content'] .= "<div class=\"hlRight\">";
|
$reply['content'] .= "<div class=\"hlRight\">";
|
||||||
|
|
Loading…
Reference in a new issue