-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
Probably same issue as:
bolt/article#38
Reproduce:
- Have custom ContentValidator returning a dummy ConstraintViolation
eg: in bolt core source, changesrc/Validator/ContentValidator.phpvalidate() method to:
public function validate(Content $content)
{
$constraints = $this->getConstraints($content->getContentType());
$constraints->add(new ConstraintViolation("zzz", null, [], null, null, null));
return $constraints;
}
- Have a Redactor field for a contenttype
- Open page to create/edit record
- Populate Redactor field
- Save record
- Upon reload, Redactor field value is not displayed.
Metadata
Metadata
Assignees
Labels
No labels

