Skip to content

Commit eab6402

Browse files
committed
Tweak comment
1 parent 55a9e11 commit eab6402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/taxonomy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2000,7 +2000,7 @@ function wp_delete_object_term_relationships( $object_id, $taxonomies ) {
20002000
foreach ( (array) $taxonomies as $taxonomy ) {
20012001
$term_ids = wp_get_object_terms( $object_id, $taxonomy, array( 'fields' => 'ids' ) );
20022002
if ( ! is_array( $term_ids ) ) {
2003-
// Skip return value in the case of an error or a 'wp_get_object_terms' filter returning an invalid value.
2003+
// Skip return value in the case of an error or the 'wp_get_object_terms' filter returning an invalid value.
20042004
continue;
20052005
}
20062006
$term_ids = array_map( 'intval', $term_ids );

0 commit comments

Comments
 (0)