Skip to content

Commit 478ef57

Browse files
committed
CCM-6 #resolve #close
validation module errors because it still uses the removed UDFLibraryFile setting.
1 parent 9c63ca8 commit 478ef57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/Coldbox.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
missingTemplateHandler = "",
2424

2525
//Extension Points
26-
UDFLibraryFile = "",
26+
ApplicationHelper = "",
2727
coldboxExtensionsLocation = "",
2828
modulesExternalLocation = [],
2929
pluginsExternalLocation = "",

modules/validation/ModuleConfig.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ component{
3333
function configure(){
3434

3535
// Mixin our own methods on handlers, interceptors and views via the ColdBox UDF Library File setting
36-
arrayAppend( controller.getSetting( "UDFLibraryFile" ), "#moduleMapping#/models/Mixins.cfm" );
36+
arrayAppend( controller.getSetting( "ApplicationHelper" ), "#moduleMapping#/models/Mixins.cfm" );
3737

3838
// Validation Settings
3939
settings = {

0 commit comments

Comments
 (0)