diff --git a/modules/backend/behaviors/RelationController.php b/modules/backend/behaviors/RelationController.php index 4f72e224d..20b55decc 100644 --- a/modules/backend/behaviors/RelationController.php +++ b/modules/backend/behaviors/RelationController.php @@ -290,6 +290,10 @@ class RelationController extends ControllerBehavior } $this->controller->pageAction(); + if ($fatalError = $this->controller->getFatalError()) { + throw new ApplicationException($fatalError); + } + $this->validateField(); $this->prepareVars(); $this->initialized = true;