mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 05:25:56 +00:00
truncate feed title length in vfeeds
This commit is contained in:
@@ -456,7 +456,7 @@ class Feeds extends Handler_Protected {
|
|||||||
if (@$line["feed_title"]) {
|
if (@$line["feed_title"]) {
|
||||||
$reply['content'] .= "<div class=\"hlFeed\">
|
$reply['content'] .= "<div class=\"hlFeed\">
|
||||||
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
||||||
$line["feed_title"]."</a>
|
truncate_string($line["feed_title"],30)."</a>
|
||||||
</div>";
|
</div>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -565,7 +565,7 @@ class Feeds extends Handler_Protected {
|
|||||||
if (@$line["feed_title"]) {
|
if (@$line["feed_title"]) {
|
||||||
$reply['content'] .= "<div class=\"hlFeed\">
|
$reply['content'] .= "<div class=\"hlFeed\">
|
||||||
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
|
||||||
$line["feed_title"]."</a>
|
truncate_string($line["feed_title"],30)."</a>
|
||||||
</div>";
|
</div>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user