Make WordPress Core

Changeset 48311


Ignore:
Timestamp:
07/05/2020 10:38:18 AM (4 years ago)
Author:
ocean90
Message:

Administration: Make all color schemes available when running from /src.

To run WordPress from /src you have to use the --dev flag which also builds the color scheme stylesheets thus the restriction is no longer required.

See #44492.
Fixes #50558.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r48294 r48311  
    43854385    );
    43864386
    4387     // Other color schemes are not available when running out of src.
    4388     if ( false !== strpos( get_bloginfo( 'version' ), '-src' ) ) {
    4389         return;
    4390     }
    4391 
    43924387    wp_admin_css_color(
    43934388        'light',
Note: See TracChangeset for help on using the changeset viewer.