1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:25:54 +00:00

truncate feed title length in vfeeds

This commit is contained in:
Andrew Dolgov
2013-03-27 14:20:11 +04:00
parent c72069b098
commit af2941dbb3

View File

@@ -456,7 +456,7 @@ class Feeds extends Handler_Protected {
if (@$line["feed_title"]) {
$reply['content'] .= "<div class=\"hlFeed\">
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a>
truncate_string($line["feed_title"],30)."</a>
</div>";
}
}
@@ -565,7 +565,7 @@ class Feeds extends Handler_Protected {
if (@$line["feed_title"]) {
$reply['content'] .= "<div class=\"hlFeed\">
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a>
truncate_string($line["feed_title"],30)."</a>
</div>";
}
}