Revert 'auto' column setting, props markjaquith, see #18863
git-svn-id: http://svn.automattic.com/wordpress/trunk@18889 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dcf34868ed
commit
f9ebf31d4a
|
@ -159,7 +159,7 @@ do_action('do_meta_boxes', $post_type, 'normal', $post);
|
|||
do_action('do_meta_boxes', $post_type, 'advanced', $post);
|
||||
do_action('do_meta_boxes', $post_type, 'side', $post);
|
||||
|
||||
$current_screen->add_option('layout_columns', array('max' => 2, 'default' => 'auto') );
|
||||
$current_screen->add_option('layout_columns', array('max' => 2, 'default' => 2) );
|
||||
|
||||
$current_screen->add_option_context(
|
||||
'<p>test</p>'
|
||||
|
|
|
@ -37,7 +37,7 @@ do_action('do_meta_boxes', 'link', 'normal', $link);
|
|||
do_action('do_meta_boxes', 'link', 'advanced', $link);
|
||||
do_action('do_meta_boxes', 'link', 'side', $link);
|
||||
|
||||
$current_screen->add_option('layout_columns', array('max' => 2, 'default' => 'auto') );
|
||||
$current_screen->add_option('layout_columns', array('max' => 2, 'default' => 2) );
|
||||
|
||||
$current_screen->add_option_context(
|
||||
'<p>test</p>'
|
||||
|
|
|
@ -672,11 +672,9 @@ final class WP_Screen {
|
|||
$screen_layout_columns = get_user_option("screen_layout_$this->id");
|
||||
$num = $this->_options['layout_columns']['max'];
|
||||
|
||||
if ( ! $screen_layout_columns ) {
|
||||
if ( ! $screen_layout_columns || 'auto' == $screen_layout_columns ) {
|
||||
if ( isset( $this->_options['layout_columns']['default'] ) )
|
||||
$screen_layout_columns = $this->_options['layout_columns']['default'];
|
||||
else
|
||||
$screen_layout_columns = 'auto';
|
||||
}
|
||||
|
||||
?>
|
||||
|
@ -692,11 +690,6 @@ final class WP_Screen {
|
|||
</label>
|
||||
<?php
|
||||
endfor; ?>
|
||||
<label>
|
||||
<input type='radio' id='wp_auto_columns' name='screen_columns' value='auto'
|
||||
<?php checked( $screen_layout_columns, 'auto' ); ?> />
|
||||
<?php esc_html_e('Auto'); ?>
|
||||
</label>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ $parent_file = 'index.php';
|
|||
if ( is_user_admin() )
|
||||
$current_screen->add_option('layout_columns', array('max' => 4, 'default' => 1) );
|
||||
else
|
||||
$current_screen->add_option('layout_columns', array('max' => 4, 'default' => 'auto') );
|
||||
$current_screen->add_option('layout_columns', array('max' => 4, 'default' => 2) );
|
||||
|
||||
$current_screen->add_option_context(
|
||||
'<p>test</p>'
|
||||
|
|
|
@ -38,7 +38,7 @@ wp_enqueue_script( 'dashboard' );
|
|||
wp_enqueue_script( 'plugin-install' );
|
||||
add_thickbox();
|
||||
|
||||
$current_screen->add_option('layout_columns', array('max' => 4, 'default' => 'auto') );
|
||||
$current_screen->add_option('layout_columns', array('max' => 4, 'default' => 2) );
|
||||
|
||||
$current_screen->add_option_context(
|
||||
'<p>test</p>'
|
||||
|
|
Loading…
Reference in New Issue