We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847e79e commit 8c8f88fCopy full SHA for 8c8f88f
changelog.md
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
14
* Major bump of all dependencies
15
16
+### Fixed
17
+
18
+* Fix process result metadata replacements https://github.com/coldbox-modules/cbvalidation/pull/64/files thanks to @alessio-de-padova
19
20
### Changed
21
22
* Dropped ACF2016
models/result/ValidationError.cfc
@@ -33,7 +33,7 @@ component accessors="true" {
33
* Get the error metadata
34
*/
35
struct function getErrorMetadata(){
36
- return variables.errorMetadata;
+ return variables.errorMetadata ?: {};
37
}
38
39
/**
0 commit comments