diff --git a/classes/controller/AdminController.php b/classes/controller/AdminController.php index 61ab677c9..980d5884a 100644 --- a/classes/controller/AdminController.php +++ b/classes/controller/AdminController.php @@ -637,7 +637,11 @@ class AdminControllerCore extends Controller $this->errors = array_unique($this->errors); if (count($this->errors) > 0) - return; + { + // if we have errors, we stay on the form instead of moving to the list + $this->display = 'edit'; + return false; + } return $object; }