1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

enable feed titles in vfeeds in combined mode, align to date

This commit is contained in:
Andrew Dolgov 2013-03-13 12:33:59 +04:00
parent 3afc03b530
commit ef69681b93
2 changed files with 7 additions and 4 deletions

View File

@ -100,3 +100,7 @@ div.articleNote {
border-style : dashed none dashed none;
}
div.cdmHeader span.hlFeed {
float : right;
font-weight : normal;
}

View File

@ -544,12 +544,11 @@ class Feeds extends Handler_Protected {
$reply['content'] .= $labels_str;
if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED') &&
defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
if (@$line["feed_title"]) {
$reply['content'] .= "<span class=\"hlFeed\">
(<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a>)
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a>
</span>";
}
}