Changeset 48121 for trunk/src/wp-admin/includes/schema.php
- Timestamp:
- 06/22/2020 05:24:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/schema.php
r47808 r48121 447 447 'template' => $template, 448 448 'stylesheet' => $stylesheet, 449 'comment_whitelist' => 1,450 'blacklist_keys' => '',451 449 'comment_registration' => 0, 452 450 'html_type' => 'text/html', … … 533 531 // 5.3.0 534 532 'admin_email_lifespan' => ( time() + 6 * MONTH_IN_SECONDS ), 533 534 // 5.5.0 535 'blocklist_keys' => '', 536 'comment_previously_approved' => 1, 535 537 ); 536 538 … … 551 553 552 554 // Set autoload to no for these options. 553 $fat_options = array( 'moderation_keys', 'recently_edited', 'bl acklist_keys', 'uninstall_plugins' );555 $fat_options = array( 'moderation_keys', 'recently_edited', 'blocklist_keys', 'uninstall_plugins' ); 554 556 555 557 $keys = "'" . implode( "', '", array_keys( $options ) ) . "'"; … … 1141 1143 } 1142 1144 1143 // If WP_DEFAULT_THEME doesn't exist, also whitelistthe latest core default theme.1145 // If WP_DEFAULT_THEME doesn't exist, also include the latest core default theme. 1144 1146 if ( ! wp_get_theme( WP_DEFAULT_THEME )->exists() ) { 1145 1147 $core_default = WP_Theme::get_core_default_theme();
Note: See TracChangeset
for help on using the changeset viewer.