Make WordPress Core


Ignore:
Timestamp:
07/14/2026 05:54:32 PM (2 months ago)
Author:
wildworks
Message:

General: Bump the pinned hash for Gutenberg to v23.6.0 RC1.

This updates the pinned commit hash of the Gutenberg repository from b5574edc8a952b2f1e528693761a97b1b3b580eb (version 23.5.0) to 2872d71cde528d82675f14862a1b84e2b8abbaea (version 23.6.0 RC1).

A full list of changes included in this commit can be found on GitHub: ​https://github.com/WordPress/gutenberg/compare/v23.5.0..v23.6.0-rc.1.

Props desrosj, wildworks.
Fixes #65529.

File:
1 edited

Legend:

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

    r62143 r62739  
    9898
    9999                        // Change existing [...] to […].
    100                         if ( '[...]' === substr( $excerpt, -5 ) ) {
     100                        if ( str_ends_with( $excerpt, '[...]' ) ) {
    101101                                $excerpt = substr( $excerpt, 0, -5 ) . '[…]';
    102102                        }
Note: See TracChangeset for help on using the changeset viewer.