Skip to content

Commit 65bc82a

Browse files
committed
full scoping
1 parent 8c8f88f commit 65bc82a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Fixed
1717

18-
* Fix process result metadata replacements https://github.com/coldbox-modules/cbvalidation/pull/64/files thanks to @alessio-de-padova
18+
* Fix process result metadata replacements https://github.com/coldbox-modules/cbvalidation/pull/64/files thanks to @alessio-de-padova, when using full null support
1919

2020
### Changed
2121

models/result/ValidationError.cfc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ component accessors="true" {
88

99
// constructor
1010
ValidationError function init(){
11-
message = "";
12-
field = "";
13-
rejectedValue = "";
14-
validationType = "";
15-
validationData = "";
16-
errorMetadata = {};
11+
variables.message = "";
12+
variables.field = "";
13+
variables.rejectedValue = "";
14+
variables.validationType = "";
15+
variables.validationData = "";
16+
variables.errorMetadata = {};
1717
return this;
1818
}
1919

0 commit comments

Comments
 (0)