Add missing access modifier to `WP_Customize_Nav_Menus_Panel::wp_nav_menu_manage_columns()`.
See #32444. Built from https://develop.svn.wordpress.org/trunk@32876 git-svn-id: http://core.svn.wordpress.org/trunk@32847 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dd2ec86e87
commit
55b2385cf5
|
@ -423,7 +423,7 @@ class WP_Customize_Nav_Menus_Panel extends WP_Customize_Panel {
|
|||
*
|
||||
* @return array The advanced menu properties.
|
||||
*/
|
||||
function wp_nav_menu_manage_columns() {
|
||||
public function wp_nav_menu_manage_columns() {
|
||||
return array(
|
||||
'_title' => __( 'Show advanced menu properties' ),
|
||||
'cb' => '<input type="checkbox" />',
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32875';
|
||||
$wp_version = '4.3-alpha-32876';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue