Make WordPress Core

Changeset 29309


Ignore:
Timestamp:
07/27/2014 05:15:22 PM (11 years ago)
Author:
ocean90
Message:

Revert [28894] as it's currently unused in core.

see #28487.

File:
1 edited

Legend:

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

    r29163 r29309  
    35033503
    35043504/**
    3505  * Determine if the scheme of the given URL is https.
    3506  *
    3507  * @since 4.0.0
    3508  *
    3509  * @param string $url The URL.
    3510  * @return bool True if the given URL uses https, false if not (or if the URL
    3511  *              is not valid).
    3512  */
    3513 function is_https_url( $url ) {
    3514     return ( 'https' === parse_url( $url, PHP_URL_SCHEME ) );
    3515 }
    3516 
    3517 /**
    35183505 * Whether SSL login should be forced.
    35193506 *
Note: See TracChangeset for help on using the changeset viewer.