Make WordPress Core


Ignore:
Timestamp:
12/08/2010 09:32:19 PM (15 years ago)
Author:
ryan
Message:

Use santize_key() in more places. Props WraithKenny. fixes #14910

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r16705 r16822  
    353353
    354354    $args['name'] = $taxonomy;
    355     $args['object_type'] = (array) $object_type;
     355    $args['object_type'] = is_array($object_type) ? array_map('sanitize_key', $object_type) : (array) sanitize_key($object_type);
    356356
    357357    $args['labels'] = get_taxonomy_labels( (object) $args );
Note: See TracChangeset for help on using the changeset viewer.