From 084cc046ac4dad472348ba72df107dbb06ee2916 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 14 Jun 2014 14:56:21 +0000 Subject: [PATCH] Correct @return value for term_exists(). props simonwheatley. fixes #28538. git-svn-id: https://develop.svn.wordpress.org/trunk@28753 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 6b4d815fe4..1f91f27def 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -1681,7 +1681,8 @@ function get_terms( $taxonomies, $args = '' ) { * @param string $taxonomy The taxonomy name to use * @param int $parent ID of parent term under which to confine the exists search. * @return mixed Returns 0 if the term does not exist. Returns the term ID if no taxonomy is specified - * and the term ID exists. Returns an array of the term ID and the taxonomy if the pairing exists. + * and the term ID exists. Returns an array of the term ID and the term taxonomy ID + * if the taxonomy is specified and the pairing exists. */ function term_exists($term, $taxonomy = '', $parent = 0) { global $wpdb;