From eaa4370237ead0a0bffbef944ad772508298c71a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 12 Jul 2013 15:43:00 +0000 Subject: [PATCH] Remove 'sorted' from do_accordion_sections(). fixes #23450. git-svn-id: http://core.svn.wordpress.org/trunk@24674 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index ab4f2af89a..2fd0cda620 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1002,7 +1002,7 @@ function do_accordion_sections( $screen, $context, $object ) { if ( ! isset( $wp_meta_boxes ) || ! isset( $wp_meta_boxes[$page] ) || ! isset( $wp_meta_boxes[$page][$context] ) ) break; - foreach ( array( 'high', 'sorted', 'core', 'default', 'low' ) as $priority ) { + foreach ( array( 'high', 'core', 'default', 'low' ) as $priority ) { if ( isset( $wp_meta_boxes[$page][$context][$priority] ) ) { foreach ( $wp_meta_boxes[$page][$context][$priority] as $box ) { if ( false == $box || ! $box['title'] )