Browse Source

Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS

Andrew Dolgov 11 years ago
parent
commit
9d9432dab8
2 changed files with 4 additions and 1 deletions
  1. 3 1
      classes/feeds.php
  2. 1 0
      tt-rss.css

+ 3 - 1
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\">";

+ 1 - 0
tt-rss.css

@@ -485,6 +485,7 @@ div.hlFeed, div.hlFeed a {
 	color : gray;
 	font-style : italic;
 	font-weight : normal;
+	white-space: nowrap;
 }
 
 div.hlFeed a:hover {