From 6fba47a265f13e828c6bfae05a0b0057918648e7 Mon Sep 17 00:00:00 2001 From: Jon Cave Date: Tue, 27 Mar 2012 12:00:39 +0000 Subject: [PATCH] Correct @since and remove invalid code example in wpdb::delete() documentation. Props GaryJ, scribu. See #18948. git-svn-id: https://develop.svn.wordpress.org/trunk@20292 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/wp-db.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 3c1b901be1..d616e95321 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -1278,10 +1278,9 @@ class wpdb { * * wpdb::delete( 'table', array( 'ID' => 1 ) ) * wpdb::delete( 'table', array( 'ID' => 1 ), array( '%d' ) ) - * wpdb::delete( 'table', array( 'ID' => 1 ), array( '%d' ), 1 ) * * - * @since 2.5.0 + * @since 3.4.0 * @see wpdb::prepare() * @see wpdb::$field_types * @see wp_set_wpdb_vars()