File level phpdc from jacobsantos. see #7550
git-svn-id: http://svn.automattic.com/wordpress/trunk@9052 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
33bcf4ec87
commit
a2b6f064b3
|
@ -1,4 +1,15 @@
|
|||
<?php
|
||||
/**
|
||||
* Draft Page 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. */
|
||||
$locked_post_status = 'draft';
|
||||
$_GET['post_status'] = 'draft';
|
||||
require_once('admin.php');
|
||||
|
|
|
@ -1,4 +1,15 @@
|
|||
<?php
|
||||
/**
|
||||
* 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. */
|
||||
$locked_post_status = 'draft';
|
||||
$_GET['post_status'] = 'draft';
|
||||
require_once('admin.php');
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* New Comment management "Inbox" Administration Panel feature.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
*/
|
||||
|
||||
/** Administration bootstrap */
|
||||
require_once('admin.php');
|
||||
|
||||
$title = __('Inbox');
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
<?php
|
||||
/**
|
||||
* Upload new media Administration Panel.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
*/
|
||||
|
||||
$_GET['inline'] = 'true';
|
||||
/** Administration bootstrap */
|
||||
require_once('admin.php');
|
||||
$title = __('Upload New Media');
|
||||
require_once('media-upload.php');
|
||||
|
|
Loading…
Reference in New Issue