Make WordPress Core

Ticket #61051: 61051.2.patch

File 61051.2.patch, 1.4 KB (added by truptikanzariya, 7 months ago)
  • src/wp-includes/class-wp-meta-query.php

    diff --git a/src/wp-includes/class-wp-meta-query.php b/src/wp-includes/class-wp-meta-query.php
    index 69dde01ff0..df4c8c503e 100644
    a b class WP_Meta_Query { 
    123123         *                                            - 'NOT IN'
    124124         *                                            - 'REGEXP'
    125125         *                                            - 'NOT REGEXP'
    126          *                                            - 'RLIKE',
     126         *                                            - 'RLIKE'
    127127         *                                            - 'EXISTS' (alias of '=')
    128128         *                                            - 'NOT EXISTS' (alias of '!=')
    129129         *                                            Default is 'IN' when `$key` is an array, '=' otherwise.
    class WP_Meta_Query { 
    132132         *                                            comparisons. Default is ''.
    133133         *         @type string|string[] $value       Meta value or values to filter by.
    134134         *         @type string          $compare     MySQL operator used for comparing the $value. Accepts:
    135          *                                            - '=',
     135         *                                            - '='
    136136         *                                            - '!='
    137137         *                                            - '>'
    138138         *                                            - '>='