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:
mikelittle 2003-11-23 01:15:51 +00:00
parent 089eae017b
commit 320f04b47e
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>';