From a280584422a53015220868e812c7575b28dd5894 Mon Sep 17 00:00:00 2001 From: duck_ 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: http://svn.automattic.com/wordpress/trunk@20292 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 3c1b901be..d616e9532 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()