Merge branch '2.0' into 2.1

This commit is contained in:
Robbie Averill 2019-02-19 11:15:39 +07:00
commit 968a4f585e
1 changed files with 11 additions and 1 deletions

View File

@ -258,10 +258,20 @@ class StringTagField extends DropdownField
$name = $this->getName();
$record->$name = join(',', $this->Value());
$record->$name = $this->dataValue();
$record->write();
}
/**
* Ensure that arrays are imploded before being saved
*
* @return mixed|string
*/
public function dataValue()
{
return implode(',', $this->value);
}
/**
* Returns a JSON string of tags, for lazy loading.
*