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

git-svn-id: https://develop.svn.wordpress.org/trunk@5963 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2007-08-28 21:04:17 +00:00
parent 299c9e1109
commit 4f158b42b0
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -6,9 +6,9 @@ wp_enqueue_script( 'listman' );
require_once('admin-header.php');
$post_stati = array( // array( adj, noun )
'publish' => array(__('Published'), __('Published pages')),
'draft' => array(__('Draft'), __('Draft pages')),
'private' => array(__('Private'), __('Private pages')),
'publish' => array(__('Published'), __('Published pages'))
'private' => array(__('Private'), __('Private pages'))
);