Posted by pypt on August 13, 2006 at 2:35pm
Jump to:
| Project: | Taxonomy Block |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | closed (duplicate) |
Issue Summary
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
Comments
#1
see: http://drupal.org/node/76059