Close span tag for unapproved

git-svn-id: https://develop.svn.wordpress.org/trunk@552 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mike Little 2003-11-23 01:15:51 +00:00
parent 26dde5e892
commit 65b06fc431
1 changed files with 5 additions and 1 deletions

View File

@ -160,9 +160,13 @@ echo $comments_nav_bar;
echo " | <a href=\"wp-post.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;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>';