From 758f9dd195e025c4140eab7d4c0fd8f8ba28711a Mon Sep 17 00:00:00 2001 From: patdenice Date: Tue, 10 Jan 2012 15:26:42 +0000 Subject: feature:2552 Apply trigger render_element_description for thumbnail title (for picture description) git-svn-id: http://piwigo.org/svn/trunk@12870 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/functions.inc.php b/include/functions.inc.php index 0871f8110..85cf7c902 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -848,7 +848,8 @@ function get_thumbnail_title($info) if (!empty($info['comment'])) { - $title.= ' '.substr($info['comment'], 0, 100).'...'; + $info['comment'] = trigger_event('render_element_description', $info['comment']); + $title.= ' '.substr($info['comment'], 0, 100).(strlen($info['comment']) > 100 ? '...' : ''); } $title = htmlspecialchars(strip_tags($title)); -- cgit v1.2.3