Changeset 47840
- Timestamp:
- 05/22/2020 05:24:05 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r47835 r47840 1007 1007 ); 1008 1008 if ( $auto_updates_enabled ) { 1009 if ( in_array( $active_theme->stylesheet, $auto_updates ) ) {1009 if ( in_array( $active_theme->stylesheet, $auto_updates, true ) ) { 1010 1010 $theme_auto_update_string = __( 'Enabled' ); 1011 1011 } else { … … 1065 1065 ); 1066 1066 if ( $auto_updates_enabled ) { 1067 if ( in_array( $parent_theme->stylesheet, $auto_updates ) ) {1067 if ( in_array( $parent_theme->stylesheet, $auto_updates, true ) ) { 1068 1068 $parent_theme_auto_update_string = __( 'Enabled' ); 1069 1069 } else { … … 1127 1127 1128 1128 if ( $auto_updates_enabled ) { 1129 if ( in_array( $theme_slug, $auto_updates ) ) {1129 if ( in_array( $theme_slug, $auto_updates, true ) ) { 1130 1130 $theme_version_string .= ' | ' . $auto_updates_enabled_str; 1131 1131 $theme_version_string_debug .= ',' . $auto_updates_enabled_str;
Note: See TracChangeset
for help on using the changeset viewer.