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
1 changed files with 2 additions and 2 deletions

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>";
}
}