Changeset 7379 for trunk/src/includes/extend/akismet.php
- Timestamp:
- 11/24/2025 07:23:06 PM (6 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/extend/akismet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/extend/akismet.php
r7378 r7379 863 863 864 864 // Maybe HTTPS if not disabled 865 if ( empty( $ssl_disabled_time ) && ( $is_ssl = wp_http_supports( array( 'ssl' ) ) ) ) { 866 $akismet_url = set_url_scheme( $akismet_url, 'https' ); 865 if ( empty( $ssl_disabled_time ) ) { 866 $is_ssl = wp_http_supports( array( 'ssl' ) ); 867 868 // Use SSL 869 if ( ! empty( $is_ssl ) ) { 870 $akismet_url = set_url_scheme( $akismet_url, 'https' ); 871 } 867 872 } 868 873
Note: See TracChangeset
for help on using the changeset viewer.