Introducing post_status="pending". see #4446 and put any initial bug reports on that ticket

git-svn-id: http://svn.automattic.com/wordpress/trunk@5707 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith
2007-06-14 16:24:28 +00:00
parent e211aa64e7
commit 7f44512c5d
13 changed files with 139 additions and 58 deletions

View File

@@ -10,7 +10,7 @@
</thead>
<tbody id="the-list">
<?php
if ($posts) {
if ( have_posts() ) {
$bgcolor = '';
while (have_posts()) : the_post();
add_filter('the_title','wp_specialchars');
@@ -97,7 +97,7 @@ endwhile;
<td colspan="8"><?php _e('No posts found.') ?></td>
</tr>
<?php
} // end if ($posts)
} // end if ( have_posts() )
?>
</tbody>
</table>