Small fix to [14102]. props ocean90. see #12889

git-svn-id: http://svn.automattic.com/wordpress/trunk@14103 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-04-16 13:45:56 +00:00
parent c882ea05ac
commit c72cecbc5d
1 changed files with 5 additions and 6 deletions

View File

@ -125,12 +125,11 @@ switch ( $action ) {
<td>
<?php
$checked_fields = array( 'public' => __( 'Public' ) );
if ( ! $is_main_site )
$checked_fields = array(
'archived' => __( 'Archived' ),
'spam' => __( 'Spam' ),
'deleted' => __( 'Deleted' ),
);
if ( ! $is_main_site ) {
$checked_fields['archived'] = __( 'Archived' );
$checked_fields['spam'] = __( 'Spam' );
$checked_fields['deleted'] = __( 'Deleted' );
}
$checked_fields['mature'] = __( 'Mature' );
foreach ( $checked_fields as $field_key => $field_label ) {
?>