diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index ae29267d7..fb0671e6b 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -815,7 +815,7 @@ function get_thumbnail_title($info) if (!empty($info['comment'])) { - $title.= ' '.$info['comment']; + $title.= ' '.substr($info['comment'], 0, 100).'...'; } $title = strip_tags($title); |