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
Comment #1
drewish commentedsee: http://drupal.org/node/76059