Make WordPress Core

Ticket #51441: 51441-multiple-files.patch

File 51441-multiple-files.patch, 3.5 KB (added by ravipatel, 4 years ago)

Added with multiples files code

  • src/wp-includes/class-simplepie.php

     
    21592159         * Uses `<xml:base>` if available, otherwise uses the first link in the
    21602160         * feed, or failing that, the URL of the feed itself.
    21612161         *
    2162          * @see get_link
    2163          * @see subscribe_url
     2162         * @see get_link()
     2163         * @see subscribe_url()
    21642164         *
    21652165         * @param array $element
    21662166         * @return string
     
    25322532         * Returns the first link available with a relationship of "alternate".
    25332533         * Identical to {@see get_link()} with key 0
    25342534         *
    2535          * @see get_link
     2535         * @see get_link()
    25362536         * @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
    25372537         * @internal Added for parity between the parent-level and the item/entry-level.
    25382538         * @return string|null Link URL
     
    30233023         * {@see get_items()} is better suited for
    30243024         * {@link http://php.net/foreach foreach()} loops.
    30253025         *
    3026          * @see get_item_quantity
     3026         * @see get_item_quantity()
    30273027         * @since Beta 2
    30283028         * @param int $start Index to start at
    30293029         * @param int $end Number of items to return. 0 for all items after `$start`
  • src/wp-includes/general-template.php

     
    24082408/**
    24092409 * Purge the cached results of get_calendar.
    24102410 *
    2411  * @see get_calendar
     2411 * @see get_calendar()
    24122412 * @since 2.1.0
    24132413 */
    24142414function delete_get_calendar_cache() {
  • src/wp-includes/shortcodes.php

     
    292292/**
    293293 * Regular Expression callable for do_shortcode() for calling shortcode hook.
    294294 *
    295  * @see get_shortcode_regex for details of the match array contents.
     295 * @see get_shortcode_regex() for details of the match array contents.
    296296 *
    297297 * @since 2.5.0
    298298 * @access private
  • src/wp-includes/SimplePie/Category.php

     
    5757         * Category identifier
    5858         *
    5959         * @var string|null
    60          * @see get_term
     60         * @see get_term()
    6161         */
    6262        var $term;
    6363
  • src/wp-includes/SimplePie/Item.php

     
    888888        /**
    889889         * Get the posting date/time for the item (UTC time)
    890890         *
    891          * @see get_date
     891         * @see get_date()
    892892         * @param string $date_format Supports any PHP date format from {@see http://php.net/date}
    893893         * @return int|string|null
    894894         */
     
    906906        /**
    907907         * Get the update date/time for the item (UTC time)
    908908         *
    909          * @see get_updated_date
     909         * @see get_updated_date()
    910910         * @param string $date_format Supports any PHP date format from {@see http://php.net/date}
    911911         * @return int|string|null
    912912         */
     
    927927         * Returns the first link available with a relationship of "alternate".
    928928         * Identical to {@see get_link()} with key 0
    929929         *
    930          * @see get_link
     930         * @see get_link()
    931931         * @since 0.8
    932932         * @return string|null Permalink URL
    933933         */