Hey Brad- that bit of code is helping identify text custom fields that are set to ‘all’ (vs numeric). We’ve got a fix:
/**
* Helper to check field setting content type for text fields
*/
protected function _text_field_check($data)
{
$settings = unserialize(base64_decode($data));
$is_text = TRUE;
if (isset($settings['field_content_type']) && $settings['field_content_type'] !== 'all')
{
$is_text = FALSE;
}
return $is_text;
}But it’s weird that’s not set. The 2.1.5 update should have set that for all text and file field types. Can you identify the field(s) causing the problem?
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.