Prevent the $title global from being stomped. Caused by merger of manage_columns_prefs() into screen_meta() in [15653]. see #14952, see #14776. The global is apparent cruft as the function doesn't use it.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15662 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin
2010-09-26 09:16:38 +00:00
parent 47b9b4ab1c
commit ffacf3e36b
2 changed files with 8 additions and 1 deletions

View File

@@ -1635,7 +1635,7 @@ function convert_to_screen( $screen ) {
}
function screen_meta($screen) {
global $wp_meta_boxes, $_wp_contextual_help, $title, $wp_list_table;
global $wp_meta_boxes, $_wp_contextual_help, $wp_list_table;
if ( is_string($screen) )
$screen = convert_to_screen($screen);