diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-11-08 04:28:30 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-11-08 04:28:30 +0000 |
commit | e5e776a263ba63407893a28df379f2ac8152680c (patch) | |
tree | cddbdfa05f6c58740161778d78f80112dac1a414 /include/picture_comment.inc.php | |
parent | e44f0b01549d3a52c5b261767c6531044d09a1a1 (diff) |
- comments.php improvements:
- unvalidated comments are shown only for administrators
- added delete/validate icons for admins
- removed some unused code
- display of comment content performed through an event
- replace some get_thumbnail_src with get_thumbnail_url
git-svn-id: http://piwigo.org/svn/trunk@1598 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/picture_comment.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index ad2878fcb..679f6287f 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -176,7 +176,7 @@ SELECT id,author,date,image_id,content 'mysql_datetime', true), - 'COMMENT' => parse_comment_content($row['content']), + 'COMMENT' => trigger_event('render_comment_content',$row['content']), ) ); |