2008-09-26 23:53:26 +02:00
|
|
|
<?php
|
2008-10-02 03:02:17 +02:00
|
|
|
/**
|
|
|
|
* Draft Post Administration Panel.
|
|
|
|
*
|
|
|
|
* This was created for the administration navigation instead of using a query
|
|
|
|
* for the drafts.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Locks the post status to draft to prevent premature posting. */
|
2008-09-26 23:53:26 +02:00
|
|
|
$locked_post_status = 'draft';
|
|
|
|
$_GET['post_status'] = 'draft';
|
2008-09-27 00:27:48 +02:00
|
|
|
require_once('admin.php');
|
|
|
|
$title = __('View Drafts');
|
2008-09-26 23:53:26 +02:00
|
|
|
require_once('edit.php');
|
|
|
|
|
|
|
|
?>
|