taxonomy_block + UTF-8
pypt - August 13, 2006 - 14:35
| Project: | Taxonomy Block |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | duplicate |
Jump to:
Description
Hi,
taxonomy_block doesn't support international symbols. This is because the table 'taxonomy_block' is created without a character set definition. There's how 'taxonomy_block.mysql' should look like:
CREATE TABLE taxonomy_block (
description varchar(100) NOT NULL default '',
teaser int(10) unsigned NOT NULL default '0',
name varchar(100) NOT NULL default '',
length int(10) unsigned NOT NULL default '1',
bid int(10) unsigned NOT NULL auto_increment,
type enum('vocabulary','term') NOT NULL default 'vocabulary',
tid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (bid)
) /*!40100 DEFAULT CHARACTER SET utf8 */;Regards,
Linas

#1
see: http://drupal.org/node/76059