From 48b64ab3e24a5567fd6b730b82b39852adcddbd8 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: https://develop.svn.wordpress.org/trunk@24674 602fd350-edb4-49c9-b593-d223f7449a82 --- 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'] )