diff options
Diffstat (limited to '')
-rw-r--r-- | include/picture_comment.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index cab49ffcf..6370544a7 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -136,9 +136,10 @@ SELECT id,author,date,image_id,content $template->assign_block_vars( 'comments.comment', array( - 'COMMENT_AUTHOR' => empty($row['author']) + 'COMMENT_AUTHOR' => trigger_event('render_comment_author', + empty($row['author']) ? l10n('guest') - : $row['author'], + : $row['author']), 'COMMENT_DATE' => format_date( $row['date'], |