bug:2896
debugg the empty() adding htmlspecialchars(strip_tags()) before the truncature in order to avoid blanks, if the description has html/ExtendedDescription tags git-svn-id: http://piwigo.org/svn/trunk@22518 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
5a0bd85b80
commit
1da192431b
1 changed files with 2 additions and 2 deletions
|
@ -583,9 +583,9 @@ function get_thumbnail_title($info, $title, $comment)
|
|||
$title.= ' ('.implode(', ', $details).')';
|
||||
}
|
||||
|
||||
if (!empty($comment))
|
||||
if (!empty($info['comment']))
|
||||
{
|
||||
$info['comment'] = trigger_event('render_element_description', $info['comment']);
|
||||
$info['comment'] = htmlspecialchars(strip_tags(trigger_event('render_element_description', $info['comment'])));
|
||||
$title.= ' '.substr($info['comment'], 0, 100).(strlen($info['comment']) > 100 ? '...' : '');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue