Changeset 45583 for trunk/src/wp-admin/includes/theme.php
- Timestamp:
- 07/01/2019 12:50:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/theme.php
r45412 r45583 304 304 } 305 305 306 if ( ! $feature_list = get_site_transient( 'wporg_theme_feature_list' ) ) { 306 $feature_list = get_site_transient( 'wporg_theme_feature_list' ); 307 if ( ! $feature_list ) { 307 308 set_site_transient( 'wporg_theme_feature_list', array(), 3 * HOUR_IN_SECONDS ); 308 309 } … … 491 492 492 493 $http_url = $url; 493 if ( $ssl = wp_http_supports( array( 'ssl' ) ) ) { 494 $ssl = wp_http_supports( array( 'ssl' ) ); 495 if ( $ssl ) { 494 496 $url = set_url_scheme( $url, 'https' ); 495 497 }
Note: See TracChangeset
for help on using the changeset viewer.