Make WordPress Core

Ticket #63315: 63315.patch

File 63315.patch, 1.1 KB (added by dilipbheda, 7 months ago)
  • src/wp-includes/class-wpdb.php

    diff --git a/src/wp-includes/class-wpdb.php b/src/wp-includes/class-wpdb.php
    index c6e6099c26..674c76f397 100644
    a b class wpdb { 
    14461446         *
    14471447         * @link https://www.php.net/sprintf Description of syntax.
    14481448         *
    1449          * @param string      $query   Query statement with `sprintf()`-like placeholders.
    1450          * @param array|mixed $args    The array of variables to substitute into the query's placeholders
    1451          *                             if being called with an array of arguments, or the first variable
    1452          *                             to substitute into the query's placeholders if being called with
    1453          *                             individual arguments.
    1454          * @param mixed       ...$args Further variables to substitute into the query's placeholders
     1449         * @param string $query   Query statement with `sprintf()` like placeholders.
     1450         * @param mixed  ...$args Further variables to substitute into the query's placeholders
    14551451         *                             if being called with individual arguments.
    14561452         * @return string|void Sanitized query string, if there is a query to prepare.
    14571453         */