Arty
Well-known member
- Affected version
- 2.0.10, 2.1.0
From src/XF/Install/Data/MySql.php:
Both columns are varchar(25), but in src/XF/Entity/StyleProperty.php they are enum():
Code:
$tables['xf_style_property'] = function(Create $table)
{
...
$table->addColumn('property_type', 'varchar', 25);
$table->addColumn('value_type', 'varchar', 25)->setDefault('');
...
};
Code:
'property_type' => ['type' => self::STR, 'required' => true,
'allowedValues' => ['value', 'css']
],
'value_type' => ['type' => self::STR, 'default' => '',
'allowedValues' => ['', 'string', 'color', 'unit', 'number', 'boolean', 'radio', 'select', 'template']
],