diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index c0bfff9a73..0c5bb5f5b1 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -24,18 +24,6 @@ function wp_dashboard_setup() { /* Register Widgets and Controls */ - // Try Gutenberg - - // If Gutenberg isn't activated, only show the panel to users who can install and activate it. - $plugins = get_plugins(); - if ( is_plugin_inactive( 'gutenberg/gutenberg.php' ) && ! current_user_can( 'install_plugins' ) ) { - remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' ); - } - // If Gutenberg is activated, only show it to users who can use it. - if ( is_plugin_active( 'gutenberg/gutenberg.php' ) && ! current_user_can( 'edit_posts' ) ) { - remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' ); - } - $response = wp_check_browser_version(); if ( $response && $response['upgrade'] ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index ea4ccd798e..76b1b8a99d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43543'; +$wp_version = '5.0-alpha-43545'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.