From 2ea53fa5344b1c22ac577e88ab10f0370c77258e Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 27 May 2007 05:28:30 +0000 Subject: [PATCH] Remove debug. see #4189 git-svn-id: https://develop.svn.wordpress.org/trunk@5557 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/taxonomy.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 8ac2640a4a..2f824a79c3 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -113,7 +113,6 @@ function wp_delete_object_term_relationships( $object_id, $taxonomies ) { $terms = get_object_terms($object_id, $taxonomies, 'fields=tt_ids'); $in_terms = "'" . implode("', '", $terms) . "'"; - error_log("Terms: " . var_export($terms, true), 0); $wpdb->query("DELETE FROM $wpdb->term_relationships WHERE object_id = '$object_id' AND term_taxonomy_id IN ($in_terms)"); // Assume all taxonomies have the same object type