Fix: missing return in FileContent::beforeValidate

This commit is contained in:
buddh4 2017-08-29 12:13:45 +02:00
parent 0777f7b976
commit d7c7bc6d19
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ Important note for LDAP users: There is a new setting "ID Attribute" which shoul
- Fix: ControllerAccess json rule
- Enh: added `closable = false` as default `ModalDialog` widget setting
- Fix: trigger richtext `clear` when submitting comment.
- Fix: missing return in `FileContent::beforeValidate`
1.2.2 (August 2, 2017)
--------------------------------

View File

@ -32,7 +32,7 @@ class FileContent extends File
$this->setFileSize();
}
parent::beforeValidate();
return parent::beforeValidate();
}
/**