diff --git a/user_guide_src/source/installation/upgrade_416.rst b/user_guide_src/source/installation/upgrade_416.rst index 36f0d1039b46..ce88d59582b7 100644 --- a/user_guide_src/source/installation/upgrade_416.rst +++ b/user_guide_src/source/installation/upgrade_416.rst @@ -20,6 +20,17 @@ Validation result changes Due to a bug fix, the Validation now might change the validation results when you validate an array item (see :ref:`Changelog `). So check the validation results for all the code that validates the array. Validating multiple fields like ``contacts.*.name`` is not affected. +If you have the following form:: + + + + +And you have the validation rule like this:: + + 'invoice_rule' => ['rules' => 'numeric', 'errors' => ['numeric' => 'Not numeric']] + +Change the rule key to ``invoice_rule.*`` and the validation will work. + Breaking Enhancements *********************