mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
Close span tag for unapproved
git-svn-id: http://svn.automattic.com/wordpress/trunk@552 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
089eae017b
commit
320f04b47e
@ -160,9 +160,13 @@ echo $comments_nav_bar;
|
||||
echo " | <a href=\"wp-post.php?action=deletecomment&p=".$comment->comment_post_ID."&comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> | ";
|
||||
} // end if any comments to show
|
||||
?> <a href="edit.php?p=<?php echo $comment->comment_post_ID; ?>">View Post</a></p>
|
||||
<?php
|
||||
if ("unapproved" == $comment_status) {
|
||||
echo "</span>";
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
|
||||
|
||||
<?php
|
||||
} // end foreach
|
||||
echo '</ol>';
|
||||
|
Loading…
Reference in New Issue
Block a user