Validation fixes from nbachiyski. fixes #5962

git-svn-id: http://svn.automattic.com/wordpress/trunk@6980 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2008-02-22 17:30:43 +00:00
parent a93e4504f6
commit 90ef210610
15 changed files with 30 additions and 29 deletions

View File

@@ -68,7 +68,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
if ( empty($title) )
$title = __('(no title)');
?>
<td><strong><a href="post.php?action=edit&post=<?php the_ID(); ?>"><?php echo $title ?></a></strong>
<td><strong><a href="post.php?action=edit&amp;post=<?php the_ID(); ?>"><?php echo $title ?></a></strong>
<?php if ('private' == $post->post_status) _e(' &#8212; <strong>Private</strong>'); ?></td>
<?php
break;