Make WordPress Core

Ticket #40447: 40447.patch

File 40447.patch, 3.6 KB (added by ocean90, 8 years ago)
  • src/wp-includes/class-wp-network-query.php

     
    9292         * Sets up the network query, based on the query vars passed.
    9393         *
    9494         * @since 4.6.0
     95         * @since 4.8.0 Introduced the 'cache_domain' parameter.
    9596         * @access public
    9697         *
    9798         * @param string|array $query {
     
    119120         *     @type array        $path__not_in         Array of paths to exclude affiliated networks for. Default empty.
    120121         *     @type string       $search               Search term(s) to retrieve matching networks for. Default empty.
    121122         *     @type bool         $update_network_cache Whether to prime the cache for found networks. Default true.
     123         *     @type string       $cache_domain         Unique cache key to be produced when this query is stored in
     124         *                                              an object cache. Default is 'core'.
    122125         * }
    123126         */
    124127        public function __construct( $query = '' ) {
     
    140143                        'path__not_in'         => '',
    141144                        'search'               => '',
    142145                        'update_network_cache' => true,
     146                        'cache_domain'         => 'core',
    143147                );
    144148
    145149                if ( ! empty( $query ) ) {
  • src/wp-includes/class-wp-site-query.php

     
    9999         * Sets up the site query, based on the query vars passed.
    100100         *
    101101         * @since 4.6.0
    102          * @since 4.8.0 Introduced the 'lang_id', 'lang__in', and 'lang__not_in' parameters.
     102         * @since 4.8.0 Introduced the 'lang_id', 'lang__in', 'lang__not_in', and 'cache_domain' parameters.
    103103         * @access public
    104104         *
    105105         * @param string|array $query {
     
    146146         *     @type array        $search_columns    Array of column names to be searched. Accepts 'domain' and 'path'.
    147147         *                                           Default empty array.
    148148         *     @type bool         $update_site_cache Whether to prime the cache for found sites. Default false.
     149         *     @type string       $cache_domain      Unique cache key to be produced when this query is stored in
     150         *                                           an object cache. Default is 'core'.
    149151         * }
    150152         */
    151153        public function __construct( $query = '' ) {
     
    181183                        'count'             => false,
    182184                        'date_query'        => null, // See WP_Date_Query
    183185                        'update_site_cache' => true,
     186                        'cache_domain'      => 'core',
    184187                );
    185188
    186189                if ( ! empty( $query ) ) {
  • src/wp-includes/ms-blogs.php

     
    581581 * Retrieves a list of sites matching requested arguments.
    582582 *
    583583 * @since 4.6.0
    584  * @since 4.8.0 Introduced the 'lang_id', 'lang__in', and 'lang__not_in' parameters.
     584 * @since 4.8.0 Introduced the 'lang_id', 'lang__in', 'lang__not_in', and 'cache_domain' parameters.
    585585 *
    586586 * @see WP_Site_Query::parse_query()
    587587 *
     
    629629 *     @type array        $search_columns    Array of column names to be searched. Accepts 'domain' and 'path'.
    630630 *                                           Default empty array.
    631631 *     @type bool         $update_site_cache Whether to prime the cache for found sites. Default false.
     632 *     @type string       $cache_domain      Unique cache key to be produced when this query is stored in
     633 *                                           an object cache. Default is 'core'.
    632634 * }
    633635 * @return array List of sites.
    634636 */