From 5404ae494925e4fc444258ff639da1522369fb5a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 15 Mar 2019 11:18:50 +0000 Subject: [PATCH] Docs: Remove unnecessary `@see` tag in `wpdb::prepare()`. The tag is only necessary for hooks. For functions and methods, autolinking is handled automatically on developer.wordpress.org. Props mbelchev, ocean90, johannadevos. Fixes #44585. See #45204. Built from https://develop.svn.wordpress.org/trunk@44901 git-svn-id: http://core.svn.wordpress.org/trunk@44732 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/wp-db.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index b853297686..7747a00d30 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-44900'; +$wp_version = '5.2-alpha-44901'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index a9d707464c..b1c6ddf52b 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -1274,7 +1274,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 wpdb::esc_like()}. + * cannot be inserted directly in the query string. Also 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.