mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-30 18:41:28 +00:00
truncate feed title in subtoolbar, vfeed display
This commit is contained in:
@@ -3255,7 +3255,8 @@
|
||||
if (!$bottom) {
|
||||
$target = "target=\"_new\"";
|
||||
}
|
||||
print "<a $target href=\"$feed_site_url\">$feed_title</a>";
|
||||
print "<a $target href=\"$feed_site_url\">".
|
||||
truncate_string($feed_title,30)."</a>";
|
||||
} else {
|
||||
print $feed_title;
|
||||
}
|
||||
@@ -4131,7 +4132,7 @@
|
||||
print "<td class='hlContent'>$content_link</td>";
|
||||
print "<td class='hlFeed'>
|
||||
<a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||
$line["feed_title"]."</a> </td>";
|
||||
truncate_string($line["feed_title"],30)."</a> </td>";
|
||||
} else {
|
||||
print "<td class='hlContent' valign='middle'>";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user