Make WordPress Core

Changeset 43545


Ignore:
Timestamp:
07/31/2018 03:15:31 PM (6 years ago)
Author:
jorbin
Message:

Gutenbeg: you can't remove call outs that don't exist

This commit should have just gone into the 4.9 branch. It did in [43544].

See: #44680
Unprops jorbin
props ocean90

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/dashboard.php

    r43543 r43545  
    2424
    2525    /* Register Widgets and Controls */
    26 
    27     // Try Gutenberg
    28 
    29     // If Gutenberg isn't activated, only show the panel to users who can install and activate it.
    30     $plugins = get_plugins();
    31     if ( is_plugin_inactive( 'gutenberg/gutenberg.php' ) && ! current_user_can( 'install_plugins' ) ) {
    32         remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' );
    33     }
    34     // If Gutenberg is activated, only show it to users who can use it.
    35     if ( is_plugin_active( 'gutenberg/gutenberg.php' ) && ! current_user_can( 'edit_posts' ) ) {
    36         remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' );
    37     }
    3826
    3927    $response = wp_check_browser_version();
Note: See TracChangeset for help on using the changeset viewer.