Changeset 9481 for trunk/wp-includes/taxonomy.php
- Timestamp:
- 11/02/2008 11:52:49 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/taxonomy.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r9397 r9481 328 328 return $_term; 329 329 } elseif ( $output == ARRAY_A ) { 330 return get_object_vars($_term); 330 $__term = get_object_vars($_term); 331 return $__term; 331 332 } elseif ( $output == ARRAY_N ) { 332 return array_values(get_object_vars($_term)); 333 $__term = array_values(get_object_vars($_term)); 334 return $__term; 333 335 } else { 334 336 return $_term;
Note: See TracChangeset
for help on using the changeset viewer.