enable feed titles in vfeeds in combined mode, align to date
This commit is contained in:
parent
3afc03b530
commit
ef69681b93
2 changed files with 7 additions and 4 deletions
4
cdm.css
4
cdm.css
|
@ -100,3 +100,7 @@ div.articleNote {
|
|||
border-style : dashed none dashed none;
|
||||
}
|
||||
|
||||
div.cdmHeader span.hlFeed {
|
||||
float : right;
|
||||
font-weight : normal;
|
||||
}
|
||||
|
|
|
@ -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>";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue