Changeset 9052
- Timestamp:
- 10/02/2008 01:02:17 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-drafts.php
r9038 r9052 1 1 <?php 2 /** 3 * Draft Page Administration Panel. 4 * 5 * This was created for the administration navigation instead of using a query 6 * for the drafts. 7 * 8 * @package WordPress 9 * @subpackage Administration 10 */ 11 12 /** Locks the post status to draft to prevent premature posting. */ 2 13 $locked_post_status = 'draft'; 3 14 $_GET['post_status'] = 'draft'; -
trunk/wp-admin/edit-post-drafts.php
r8993 r9052 1 1 <?php 2 /** 3 * Draft Post Administration Panel. 4 * 5 * This was created for the administration navigation instead of using a query 6 * for the drafts. 7 * 8 * @package WordPress 9 * @subpackage Administration 10 */ 11 12 /** Locks the post status to draft to prevent premature posting. */ 2 13 $locked_post_status = 'draft'; 3 14 $_GET['post_status'] = 'draft'; -
trunk/wp-admin/inbox.php
r9032 r9052 1 1 <?php 2 /** 3 * New Comment management "Inbox" Administration Panel feature. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** Administration bootstrap */ 2 10 require_once('admin.php'); 3 11 -
trunk/wp-admin/media-new.php
r9035 r9052 1 1 <?php 2 /** 3 * Upload new media Administration Panel. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 2 9 $_GET['inline'] = 'true'; 10 /** Administration bootstrap */ 3 11 require_once('admin.php'); 4 12 $title = __('Upload New Media');
Note: See TracChangeset
for help on using the changeset viewer.