Make WordPress Core

Changeset 9052


Ignore:
Timestamp:
10/02/2008 01:02:17 AM (16 years ago)
Author:
ryan
Message:

File level phpdc from jacobsantos. see #7550

Location:
trunk/wp-admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-page-drafts.php

    r9038 r9052  
    11<?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. */
    213$locked_post_status = 'draft';
    314$_GET['post_status'] = 'draft';
  • trunk/wp-admin/edit-post-drafts.php

    r8993 r9052  
    11<?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. */
    213$locked_post_status = 'draft';
    314$_GET['post_status'] = 'draft';
  • trunk/wp-admin/inbox.php

    r9032 r9052  
    11<?php
     2/**
     3 * New Comment management "Inbox" Administration Panel feature.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
     9/** Administration bootstrap */
    210require_once('admin.php');
    311
  • trunk/wp-admin/media-new.php

    r9035 r9052  
    11<?php
     2/**
     3 * Upload new media Administration Panel.
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
    29$_GET['inline'] = 'true';
     10/** Administration bootstrap */
    311require_once('admin.php');
    412$title = __('Upload New Media');
Note: See TracChangeset for help on using the changeset viewer.