Make WordPress Core

Changeset 35297


Ignore:
Timestamp:
10/20/2015 06:09:06 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Improve vague changelog entries for functions and hooks where arguments were deprecated in [35294].

See #31078. See #32246.

File:
1 edited

Legend:

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

    r35294 r35297  
    9292 *
    9393 * @since 2.2.0
    94  * @since 4.4.0 Deprecated argument.
    95  *
    96  * @param string $deprecated Deprecated.
     94 * @since 4.4.0 The optional `$sep` parameter was deprecated and renamed to `$deprecated`.
     95 *
     96 * @param string $deprecated Unused..
    9797 * @return string The document title.
    9898 */
     
    106106     *
    107107     * @since 2.2.0
    108      * @since 4.4.0 Deprecated argument.
     108     * @since 4.4.0 The `$sep` parameter was deprecated and renamed to `$deprecated`.
    109109     *
    110110     * @param string $title      The current blog title.
    111      * @param string $deprecated Deprecated.
     111     * @param string $deprecated Unused.
    112112     */
    113113    return apply_filters( 'get_wp_title_rss', wp_get_document_title(), $deprecated );
     
    118118 *
    119119 * @since 2.2.0
    120  * @since 4.4.0 Deprecated argument.
    121  *
    122  * @param string $deprecated Optional.
     120 * @since 4.4.0 The optional `$sep` parameter was deprecated and renamed to `$deprecated`.
     121 *
     122 * @param string $deprecated Unused.
    123123 */
    124124function wp_title_rss( $deprecated = '–' ) {
     
    131131     *
    132132     * @since 2.2.0
    133      * @since 4.4.0 Deprecated argument.
     133     * @since 4.4.0 The `$sep` parameter was deprecated and renamed to `$deprecated`.
    134134     *
    135135     * @see get_wp_title_rss()
    136136     *
    137137     * @param string $wp_title_rss The current blog title.
    138      * @param string $deprecated   Deprecated.
     138     * @param string $deprecated   Unused.
    139139     */
    140140    echo apply_filters( 'wp_title_rss', get_wp_title_rss(), $deprecated );
     
    150150function get_the_title_rss() {
    151151    $title = get_the_title();
     152
    152153    /**
    153154     * Filter the post title for use in a feed.
Note: See TracChangeset for help on using the changeset viewer.