From b5c0e17822cc58f7052c92ecc34ba054c6aeff44 Mon Sep 17 00:00:00 2001 From: patdenice Date: Tue, 10 Jan 2012 15:31:09 +0000 Subject: merge r12870 from trunk to branch 2.3 feature:2552 Apply trigger render_element_description for thumbnail title (for picture description) git-svn-id: http://piwigo.org/svn/branches/2.3@12871 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/functions.inc.php') diff --git a/include/functions.inc.php b/include/functions.inc.php index e69d5ced6..f6b8303b6 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -820,7 +820,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