mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
feature 2754: Add "Email" field for user comments + mandatory "Author"
git-svn-id: http://piwigo.org/svn/trunk@18164 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
17
comments.php
17
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']))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user