Make WordPress Core


Ignore:
Timestamp:
08/28/2007 09:04:17 PM (17 years ago)
Author:
ryan
Message:

Reorder post/page status dropdowns. Props mdawaffe. fixes #4848

File:
1 edited

Legend:

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

    r5903 r5963  
    1010$_GET['cat'] = (int) $_GET['cat'];
    1111$post_stati  = array(   //  array( adj, noun )
    12             'draft' => array(__('Draft'), _c('Drafts|manage posts header')),
     12            'publish' => array(__('Published'), __('Published posts')),
    1313            'future' => array(__('Scheduled'), __('Scheduled posts')),
    1414            'pending' => array(__('Pending Review'), __('Pending posts')),
    15             'private' => array(__('Private'), __('Private posts')),
    16             'publish' => array(__('Published'), __('Published posts'))
     15            'draft' => array(__('Draft'), _c('Drafts|manage posts header')),
     16            'private' => array(__('Private'), __('Private posts'))
    1717        );
    1818
Note: See TracChangeset for help on using the changeset viewer.