diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index 8ccd02998f..2ef5f8d1b9 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -1073,7 +1073,7 @@ class WP_List_Table { // If the primary column doesn't exist, // fall back to the first non-checkbox column. if ( ! isset( $columns[ $default ] ) ) { - $default = WP_List_Table::get_default_primary_column_name(); + $default = self::get_default_primary_column_name(); } /** diff --git a/wp-admin/includes/class-wp-screen.php b/wp-admin/includes/class-wp-screen.php index 57077ed299..9464fabe05 100644 --- a/wp-admin/includes/class-wp-screen.php +++ b/wp-admin/includes/class-wp-screen.php @@ -377,7 +377,7 @@ final class WP_Screen { return $screen; } } else { - $screen = new WP_Screen(); + $screen = new self(); $screen->id = $id; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 8880e0f8fc..725a605e1f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49190'; +$wp_version = '5.6-alpha-49192'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.