Fixed saving data with empty field, default value (from config, plugin, theme) was used instead

This commit is contained in:
Matias Griese
2020-01-16 19:51:53 +02:00
parent 3a18ad969e
commit fb9c17379d
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
* Added `field.show_label` and `field.label` display logic from frontend forms
1. [](#bugfix)
* Fixed user profile when using `Flex Users` only in admin
* Fixed saving data with empty field, default value (from config, plugin, theme) was used instead
# v1.10.0-rc.3
## 01/02/2020

View File

@@ -161,7 +161,7 @@ class AdminController extends AdminBaseController
return false;
}
$obj->filter();
$obj->filter(false, true);
$obj = $this->storeFiles($obj);