[ticket/13111] Dropdown options are already an array in the field data

PHPBB3-13111
This commit is contained in:
Joas Schilling 2014-09-30 12:27:14 +02:00
parent 71ac6ab2b8
commit f64a937a57

View file

@ -133,7 +133,7 @@ abstract class type_base implements type_interface
{
foreach ($field_data[$key] as $lang_id => $options)
{
$field_data[$key][$lang_id] = explode("\n", $options);
$field_data[$key][$lang_id] = is_array($options) ? $options : explode("\n", $options);
}
return $current_value;