1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 21:31:28 +00:00

headline list display touch-ups

This commit is contained in:
Andrew Dolgov
2005-11-27 17:23:27 +01:00
parent 2e85e07be8
commit 0f172fff41
2 changed files with 13 additions and 2 deletions

View File

@@ -1065,13 +1065,20 @@
print "<td class='hlFeed'>
<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
} else {
print "<td class='hlContent'>$content_link";
print "<td class='hlContent'>";
print "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
$line["title"];
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
$content_preview = truncate_string(strip_tags($line["content_preview"]),
101);
print "<span class=\"contentPreview\"> - $content_preview</span>";
}
print "</a>";
print "</td>";
}