Make WordPress Core


Ignore:
Timestamp:
02/07/2025 03:44:07 PM (12 months ago)
Author:
joemcgill
Message:

Editor: Update packages for 6.8 pre-Betas.

Syncs @wordpress/* packages to the 'latest' npm tag.

Props mamaduka, joemcgill, youknowriad, swissspidy, sergiomdgomes, gziolo.
See #62887.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/social-link.php

    r58275 r59775  
    4343    /**
    4444     * Prepend URL with https:// if it doesn't appear to contain a scheme
    45      * and it's not a relative link starting with //.
     45     * and it's not a relative link or a fragment.
    4646     */
    47     if ( ! parse_url( $url, PHP_URL_SCHEME ) && ! str_starts_with( $url, '//' ) ) {
     47    if ( ! parse_url( $url, PHP_URL_SCHEME ) && ! str_starts_with( $url, '//' ) && ! str_starts_with( $url, '#' ) ) {
    4848        $url = 'https://' . $url;
    4949    }
Note: See TracChangeset for help on using the changeset viewer.