mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-25 10:38:11 +01:00
Only show IP and email address for comments a user can edit. Fixes #4353.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7322 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8a81571933
commit
a7f441525e
@ -606,6 +606,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
|
|||||||
$authordata = get_userdata($post->post_author);
|
$authordata = get_userdata($post->post_author);
|
||||||
$the_comment_status = wp_get_comment_status($comment->comment_ID);
|
$the_comment_status = wp_get_comment_status($comment->comment_ID);
|
||||||
$class = ('unapproved' == $the_comment_status) ? 'unapproved' : '';
|
$class = ('unapproved' == $the_comment_status) ? 'unapproved' : '';
|
||||||
|
|
||||||
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
||||||
if ( 'attachment' == $post->post_type )
|
if ( 'attachment' == $post->post_type )
|
||||||
$post_link = "<a href='upload.php?attachment_id=$post->ID'>";
|
$post_link = "<a href='upload.php?attachment_id=$post->ID'>";
|
||||||
@ -613,15 +614,23 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
|
|||||||
$post_link = "<a href='edit-pages.php?page_id=$post->ID'>";
|
$post_link = "<a href='edit-pages.php?page_id=$post->ID'>";
|
||||||
else
|
else
|
||||||
$post_link = "<a href='edit.php?p=$post->ID'>";
|
$post_link = "<a href='edit.php?p=$post->ID'>";
|
||||||
}
|
|
||||||
$post_link .= get_the_title($comment->comment_post_ID) . '</a>';
|
$post_link .= get_the_title($comment->comment_post_ID) . '</a>';
|
||||||
|
|
||||||
|
$edit_link_start = "<a class='row-title' href='comment.php?action=editcomment&c={$comment->comment_ID}'>";
|
||||||
|
$edit_link_end = '</a>';
|
||||||
|
} else {
|
||||||
|
$post_link = get_the_title($comment->comment_post_ID);
|
||||||
|
$edit_link_start = $edit_link_end ='';
|
||||||
|
}
|
||||||
|
|
||||||
$author_url = get_comment_author_url();
|
$author_url = get_comment_author_url();
|
||||||
if ( 'http://' == $author_url )
|
if ( 'http://' == $author_url )
|
||||||
$author_url = '';
|
$author_url = '';
|
||||||
$author_url_display = $author_url;
|
$author_url_display = $author_url;
|
||||||
if ( strlen($author_url_display) > 50 )
|
if ( strlen($author_url_display) > 50 )
|
||||||
$author_url_display = substr($author_url_display, 0, 49) . '...';
|
$author_url_display = substr($author_url_display, 0, 49) . '...';
|
||||||
|
|
||||||
$ptime = date('G', strtotime( $comment->comment_date ) );
|
$ptime = date('G', strtotime( $comment->comment_date ) );
|
||||||
if ( ( abs(time() - $ptime) ) < 86400 )
|
if ( ( abs(time() - $ptime) ) < 86400 )
|
||||||
$ptime = sprintf( __('%s ago'), human_time_diff( $ptime ) );
|
$ptime = sprintf( __('%s ago'), human_time_diff( $ptime ) );
|
||||||
@ -639,14 +648,16 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
|
|||||||
<td class="check-column"><?php if ( current_user_can('edit_post', $comment->comment_post_ID) ) { ?><input type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /><?php } ?></td>
|
<td class="check-column"><?php if ( current_user_can('edit_post', $comment->comment_post_ID) ) { ?><input type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /><?php } ?></td>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<td class="comment">
|
<td class="comment">
|
||||||
<p class="comment-author"><strong><a class="row-title" href="comment.php?action=editcomment&c=<?php echo $comment->comment_ID?>"><?php comment_author(); ?></a></strong><br />
|
<p class="comment-author"><strong><?php echo $edit_link_start; comment_author(); echo $edit_link_end; ?></strong><br />
|
||||||
<?php if ( !empty($author_url) ) : ?>
|
<?php if ( !empty($author_url) ) : ?>
|
||||||
<a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a> |
|
<a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a> |
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
<?php if ( current_user_can( 'edit_post', $post->ID ) ) : ?>
|
||||||
<?php if ( !empty($comment->comment_author_email) ): ?>
|
<?php if ( !empty($comment->comment_author_email) ): ?>
|
||||||
<?php comment_author_email_link() ?> |
|
<?php comment_author_email_link() ?> |
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<a href="edit-comments.php?s=<?php comment_author_IP() ?>&mode=detail"><?php comment_author_IP() ?></a>
|
<a href="edit-comments.php?s=<?php comment_author_IP() ?>&mode=detail"><?php comment_author_IP() ?></a>
|
||||||
|
<?php endif; //current_user_can?>
|
||||||
</p>
|
</p>
|
||||||
<?php if ( 'detail' == $mode ) comment_text(); ?>
|
<?php if ( 'detail' == $mode ) comment_text(); ?>
|
||||||
<p><?php printf(__('From %1$s, %2$s'), $post_link, $ptime) ?></p>
|
<p><?php printf(__('From %1$s, %2$s'), $post_link, $ptime) ?></p>
|
||||||
|
Loading…
Reference in New Issue
Block a user