From 593bdb87faa5df195e327c00034fa9ca063d0d6e Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 19 Dec 2018 07:29:22 +0000 Subject: [PATCH] Docs: Update an inline `@see` reference in the DocBlock for wpdb::prepare() to reference `wpdb::esc_like()` the method instead of `esc_like()` the nonexistent function. Props antaltettinger. Fixes #45204. git-svn-id: https://develop.svn.wordpress.org/trunk@44330 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/wp-db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/wp-db.php b/src/wp-includes/wp-db.php index af42aaf841..f05b2c4bec 100644 --- a/src/wp-includes/wp-db.php +++ b/src/wp-includes/wp-db.php @@ -1273,7 +1273,7 @@ class wpdb { * * Literal percentage signs (%) in the query string must be written as %%. Percentage wildcards (for example, * to use in LIKE syntax) must be passed via a substitution argument containing the complete LIKE string, these - * cannot be inserted directly in the query string. Also see {@see esc_like()}. + * cannot be inserted directly in the query string. Also see {@see wpdb::esc_like()}. * * Arguments may be passed as individual arguments to the method, or as a single array containing all arguments. A combination * of the two is not supported.