#13381 closed defect (bug) (invalid)
label for register_taxonomy does not accept non-standard characters
Reported by: | wjm | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.0 |
Component: | Taxonomy | Keywords: | register_taxonomy, admin panel |
Focuses: | Cc: |
Description
WordPress version: 3.0-beta2
Hi,
the following code registers the taxonomy, but it does not get displayed in the admin panel, under the POSTS menu.
register_taxonomy( 'informacion', 'post', array( 'hierarchical' => true, 'label' => 'Información', 'query_var' => true, 'rewrite' => true ) );
the problem happens with the label having a non-standard char.
if I set it to:
'label' => 'Información'
it works fine.
this is the html ouput in the admin section
<li><a href='edit-tags.php?taxonomy=informacion' tabindex="1"></a>
Change History (4)
Note: See
TracTickets for help on using
tickets.
It displays correctly for me with the charset set to UTF-8.