sectorid TINYINT(2) UNSIGNED NOT NULL,
subsectorid TINYINT(3) UNSIGNED NOT NULL,
name VARCHAR(256) NOT NULL DEFAULT '',
- flags ENUM('display') NOT NULL DEFAULT 'display',
+ flags SET('display') NOT NULL DEFAULT 'display',
PRIMARY KEY(id)
) CHARSET=utf8;
if ($val['tag'] == 'grand-domaine' && $val['type'] == 'open') {
$res = XDB::execute('INSERT INTO profile_job_sector_enum (name)
VALUES ({?})',
- ucfirst(strtolower($val['attributes']['intitule'])));
+ ucfirst(mb_strtolower($val['attributes']['intitule'])));
$sectorid = XDB::insertId();
}
if ($val['tag'] == 'domaine' && $val['type'] == 'open') {