Changes between Initial Version and Version 1 of Ticket #21593
- Timestamp:
- 08/15/2012 04:30:31 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21593
-
Property
Summary
changed from
create_taxonomy() doesn't fail when taxonomy name too longtoregister_taxonomy() doesn't fail when taxonomy name too long
-
Property
Summary
changed from
-
Ticket #21593 – Description
initial v1 1 The 'taxonomy' field of the 'term_taxonomy' table is VARCHAR(32), ie truncated at 32 characters. But create_taxonomy() doesn't fail when you try to create a taxonomy with a unique name longer than this.1 The 'taxonomy' field of the 'term_taxonomy' table is VARCHAR(32), ie truncated at 32 characters. But register_taxonomy() doesn't fail when you try to create a taxonomy with a unique name longer than this. 2 2 3 3 The effects are that terms can be added to 'terms' table along with corresponding entries in 'term_taxonomy', but that these can't be read back again. The taxonomy appears in the admin menus, but appears to be totally empty.