Make WordPress Core

Changeset 61357


Ignore:
Timestamp:
12/07/2025 01:09:51 AM (3 months ago)
Author:
westonruter
Message:

Script Loader: Re-target release for missing dependency notices from 7.0.0 to 6.9.1.

Follow-up to [61323], [60999].

See #64229.

Location:
trunk/src/wp-includes
Files:
4 edited

Legend:

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

    r61323 r61357  
    112112     * warnings don't occur.
    113113     *
    114      * @since 7.0.0
     114     * @since 6.9.1
    115115     * @var string[]
    116116     */
     
    224224                        get_class( $this ) . '::add',
    225225                        $this->get_dependency_warning_message( $handle, $missing_dependencies ),
    226                         '7.0.0'
     226                        '6.9.1'
    227227                    );
    228228                    $this->dependencies_with_missing_dependencies[] = $handle;
     
    564564     * Gets a dependency warning message for a handle.
    565565     *
    566      * @since 7.0.0
     566     * @since 6.9.1
    567567     *
    568568     * @param string   $handle                     Handle with missing dependencies.
  • trunk/src/wp-includes/class-wp-script-modules.php

    r61323 r61357  
    7777     * emitted with {@see _doing_it_wrong()}. The ID is then added to this list, so that duplicate warnings don't occur.
    7878     *
    79      * @since 7.0.0
     79     * @since 6.9.1
    8080     * @var string[]
    8181     */
     
    745745                        implode( ', ', $missing_dependencies )
    746746                    ),
    747                     '7.0.0'
     747                    '6.9.1'
    748748                );
    749749                $this->modules_with_missing_dependencies[] = $id;
  • trunk/src/wp-includes/class-wp-scripts.php

    r61323 r61357  
    11691169     * Gets a script-specific dependency warning message.
    11701170     *
    1171      * @since 7.0.0
     1171     * @since 6.9.1
    11721172     *
    11731173     * @param string   $handle                     Script handle with missing dependencies.
  • trunk/src/wp-includes/class-wp-styles.php

    r61323 r61357  
    498498     * Gets a style-specific dependency warning message.
    499499     *
    500      * @since 7.0.0
     500     * @since 6.9.1
    501501     *
    502502     * @param string   $handle                     Style handle with missing dependencies.
Note: See TracChangeset for help on using the changeset viewer.