aboutsummaryrefslogtreecommitdiffstats
path: root/picture.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-08-25 23:10:12 +0000
committerrub <rub@piwigo.org>2007-08-25 23:10:12 +0000
commit5c13d6a8f1416abb5712bc77aadb959dc1c9d333 (patch)
treeee66e56904361214545bb288b4693a233f82f9fa /picture.php
parent7142203c4e3cf5961b98db2ad702bf4c57cfca1e (diff)
Resolved 0000728: Add description triggers for categories and elements
Add: o render_category_description o render_category_literal_description o render_element_description Merge branch-1_7 2048:2050 into BSF git-svn-id: http://piwigo.org/svn/trunk@2079 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r--picture.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/picture.php b/picture.php
index 50e06bc33..de2c7b8dd 100644
--- a/picture.php
+++ b/picture.php
@@ -55,6 +55,9 @@ add_event_handler(
EVENT_HANDLER_PRIORITY_NEUTRAL,
2
);
+// add default event handler for rendering element description
+add_event_handler('render_element_description', 'nl2br');
+
trigger_action('loc_begin_picture');
// this is the default handler that generates the display for the element
@@ -640,7 +643,9 @@ if (isset($picture['current']['comment'])
$template->assign_block_vars(
'legend',
array(
- 'COMMENT_IMG' => nl2br($picture['current']['comment'])
+ 'COMMENT_IMG' =>
+ trigger_event('render_element_description',
+ $picture['current']['comment'])
));
$header_infos['COMMENT'] = strip_tags($picture['current']['comment']);
}