From 7e33b84e770ddab61ef1d5c67061cd41c189f20e Mon Sep 17 00:00:00 2001 From: mistic100 Date: Sun, 23 Sep 2012 09:34:30 +0000 Subject: feature 2754: Add "Email" field for user comments + mandatory "Author" git-svn-id: http://piwigo.org/svn/trunk@18164 68402e56-0260-453c-a942-63ccdbb3a9ee --- comments.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'comments.php') diff --git a/comments.php b/comments.php index f695cebaa..1cd19890d 100644 --- a/comments.php +++ b/comments.php @@ -383,6 +383,8 @@ SELECT com.id AS comment_id, com.image_id, com.author, com.author_id, + u.'.$conf['user_fields']['email'].' AS user_email, + com.email, com.date, com.website_url, com.content, @@ -473,6 +475,16 @@ SELECT c.id, name, permalink, uppercats, com.id as comment_id 'image_file' => $elements[$comment['image_id']]['file'], ) ); + + $email = null; + if (!empty($comment['user_email'])) + { + $email = $comment['user_email']; + } + else if (!empty($comment['email'])) + { + $email = $comment['email']; + } $tpl_comment = array( 'ID' => $comment['comment_id'], @@ -484,6 +496,11 @@ SELECT c.id, name, permalink, uppercats, com.id as comment_id 'DATE'=>format_date($comment['date'], true), 'CONTENT'=>trigger_event('render_comment_content',$comment['content']), ); + + if (is_admin()) + { + $tpl_comment['EMAIL'] = $email; + } if (can_manage_comment('delete', $comment['author_id'])) { -- cgit v1.2.3