Make WordPress Core

Ticket #45204: 45204.diff

File 45204.diff, 801 bytes (added by antaltettinger, 8 years ago)

Corrected with link to the requested Description section in the WordPress Codex

  • wp-includes/wp-db.php

    diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php
    index ae08158f64..83079dc585 100644
    a b class wpdb {  
    12731273         *
    12741274         * Literal percentage signs (%) in the query string must be written as %%. Percentage wildcards (for example,
    12751275         * to use in LIKE syntax) must be passed via a substitution argument containing the complete LIKE string, these
    1276          * cannot be inserted directly in the query string. Also see {@see esc_like()}.
     1276         * cannot be inserted directly in the query string. Also see https://codex.wordpress.org/Class_Reference/wpdb/esc_like#Description.
    12771277         *
    12781278         * Arguments may be passed as individual arguments to the method, or as a single array containing all arguments. A combination
    12791279         * of the two is not supported.