Make WordPress Core

Ticket #57069: 57069.2.patch

File 57069.2.patch, 2.5 KB (added by jigar bhanushali, 23 months ago)
  • src/wp-admin/includes/class-wp-upgrader.php

    diff --git a/src/wp-admin/includes/class-wp-upgrader.php b/src/wp-admin/includes/class-wp-upgrader.php
    index a2b2c9ed06..88c6d5d604 100644
    a b class WP_Upgrader { 
    911911         *
    912912         * @since 4.5.0
    913913         *
     914         * @global wpdb $wpdb The WordPress database abstraction object.
     915         *
    914916         * @param string $lock_name       The name of this unique lock.
    915917         * @param int    $release_timeout Optional. The duration in seconds to respect an existing lock.
    916918         *                                Default: 1 hour.
  • src/wp-includes/class-wp-block.php

    diff --git a/src/wp-includes/class-wp-block.php b/src/wp-includes/class-wp-block.php
    index 8a51e66085..973c6499b4 100644
    a b class WP_Block { 
    195195         * Generates the render output for the block.
    196196         *
    197197         * @since 5.5.0
     198         *
     199         * @global WP_Post $post Global post object.
    198200         *
    199201         * @param array $options {
    200202         *     Optional options object.
  • src/wp-includes/class-wp-locale.php

    diff --git a/src/wp-includes/class-wp-locale.php b/src/wp-includes/class-wp-locale.php
    index ca98f9d301..8b4e9ff260 100644
    a b class WP_Locale { 
    124124         * @since 2.1.0
    125125         *
    126126         * @global string $text_direction
    127          * @global string $wp_version     The WordPress version string.
     127         *
    128128         */
    129129        public function init() {
    130130                // The weekdays.
  • src/wp-includes/class-wp-tax-query.php

    diff --git a/src/wp-includes/class-wp-tax-query.php b/src/wp-includes/class-wp-tax-query.php
    index e7b1e2a95a..881e0ce2dc 100644
    a b class WP_Tax_Query { 
    589589         *
    590590         * @since 3.2.0
    591591         *
    592          * @global wpdb $wpdb The WordPress database abstraction object.
    593          *
    594592         * @param array  $query           The single query. Passed by reference.
    595593         * @param string $resulting_field The resulting field. Accepts 'slug', 'name', 'term_taxonomy_id',
    596594         *                                or 'term_id'. Default 'term_id'.
  • src/wp-includes/class-wp-term-query.php

    diff --git a/src/wp-includes/class-wp-term-query.php b/src/wp-includes/class-wp-term-query.php
    index 18c85e89b2..ae391bfcf5 100644
    a b class WP_Term_Query { 
    910910         *
    911911         * @since 4.6.0
    912912         *
    913          * @global wpdb $wpdb WordPress database abstraction object.
    914          *
    915913         * @param string $orderby_raw Alias for the field to order by.
    916914         * @return string|false Value to used in the ORDER clause. False otherwise.
    917915         */