From 9b676522319f9d64adae5202d8500945b9f6d40a Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Sun, 10 May 2009 09:25:43 +0000 Subject: [PATCH] Fix typo in [11253] fixes #8704 props Denis-de-Bernardy. git-svn-id: https://develop.svn.wordpress.org/trunk@11255 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 8365d68e07..3f1a47cc66 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); }