mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
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:
parent
c882ea05ac
commit
c72cecbc5d
@ -125,12 +125,11 @@ switch ( $action ) {
|
|||||||
<td>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
$checked_fields = array( 'public' => __( 'Public' ) );
|
$checked_fields = array( 'public' => __( 'Public' ) );
|
||||||
if ( ! $is_main_site )
|
if ( ! $is_main_site ) {
|
||||||
$checked_fields = array(
|
$checked_fields['archived'] = __( 'Archived' );
|
||||||
'archived' => __( 'Archived' ),
|
$checked_fields['spam'] = __( 'Spam' );
|
||||||
'spam' => __( 'Spam' ),
|
$checked_fields['deleted'] = __( 'Deleted' );
|
||||||
'deleted' => __( 'Deleted' ),
|
}
|
||||||
);
|
|
||||||
$checked_fields['mature'] = __( 'Mature' );
|
$checked_fields['mature'] = __( 'Mature' );
|
||||||
foreach ( $checked_fields as $field_key => $field_label ) {
|
foreach ( $checked_fields as $field_key => $field_label ) {
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user