From f80f234fdd8805991a7b917c14038358e70e8f7a Mon Sep 17 00:00:00 2001 From: westi Date: Sun, 10 May 2009 09:25:43 +0000 Subject: [PATCH] Fix typo in [11253] fixes #8704 props Denis-de-Bernardy. git-svn-id: http://svn.automattic.com/wordpress/trunk@11255 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 8365d68e0..3f1a47cc6 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -1273,7 +1273,7 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) { } if ( ! $terms ) - return $terms = array(); + $terms = array(); return apply_filters('wp_get_object_terms', $terms, $object_ids, $taxonomies, $args); }