Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Hax/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ function hacks_comment($comment, $args, $depth) {

<a class="comment__meta" href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ); ?>" rel="bookmark" title="Permanent link to this comment by <?php comment_author(); ?>"><abbr class="published" title="<?php comment_date('Y-m-d'); ?>"><?php comment_date('F jS, Y'); ?></abbr> at <?php comment_time(); ?></a>

<?php if ( (get_option('thread_comments') == true) && (current_user_can('edit_post', $comment->comment_post_ID)) ) : ?>
<?php if ( (get_option('thread_comments') == true) && ($user_ID || get_option('comment_registration')) ) : ?>
<p class="comment__util"><?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?> <?php if ( current_user_can('edit_post', $comment->comment_post_ID) ) : ?><span class="edit"><?php edit_comment_link('Edit Comment','',''); ?></span><?php endif; ?></p>
<?php endif; ?>
<?php
Expand Down