Docs: Standardize `@deprecated` tag formatting in the DocBlocks for several `wpdb` methods.
Props Alphawolf. See #28806. Built from https://develop.svn.wordpress.org/trunk@33679 git-svn-id: http://core.svn.wordpress.org/trunk@33646 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bf371f1577
commit
4770601d73
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-33678';
|
$wp_version = '4.4-alpha-33679';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -1061,7 +1061,7 @@ class wpdb {
|
||||||
* Use esc_sql() or wpdb::prepare() instead.
|
* Use esc_sql() or wpdb::prepare() instead.
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
* @deprecated 3.6.0
|
* @deprecated 3.6.0 Use wpdb::prepare()
|
||||||
* @see wpdb::prepare
|
* @see wpdb::prepare
|
||||||
* @see esc_sql()
|
* @see esc_sql()
|
||||||
* @access private
|
* @access private
|
||||||
|
@ -1135,7 +1135,7 @@ class wpdb {
|
||||||
* Use esc_sql() or wpdb::prepare() instead.
|
* Use esc_sql() or wpdb::prepare() instead.
|
||||||
*
|
*
|
||||||
* @since 0.71
|
* @since 0.71
|
||||||
* @deprecated 3.6.0
|
* @deprecated 3.6.0 Use wpdb::prepare()
|
||||||
* @see wpdb::prepare()
|
* @see wpdb::prepare()
|
||||||
* @see esc_sql()
|
* @see esc_sql()
|
||||||
*
|
*
|
||||||
|
@ -3022,9 +3022,10 @@ class wpdb {
|
||||||
*
|
*
|
||||||
* Called when WordPress is generating the table scheme.
|
* Called when WordPress is generating the table scheme.
|
||||||
*
|
*
|
||||||
|
* Use `wpdb::has_cap( 'collation' )`.
|
||||||
|
*
|
||||||
* @since 2.5.0
|
* @since 2.5.0
|
||||||
* @deprecated 3.5.0
|
* @deprecated 3.5.0 Use wpdb::has_cap()
|
||||||
* @deprecated Use wpdb::has_cap( 'collation' )
|
|
||||||
*
|
*
|
||||||
* @return bool True if collation is supported, false if version does not
|
* @return bool True if collation is supported, false if version does not
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue