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 ff8d7c7 commit 2cf5e3cCopy full SHA for 2cf5e3c
ModuleConfig.cfc
@@ -34,11 +34,12 @@ component {
34
variables.settings = {
35
// Internal engine flags
36
engine : {
37
- isLucee = server.keyExists( "lucee" ),
38
- isBoxLang = server.keyExists( "boxlang" ),
39
- isAdobe = server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase( "ColdFusion" )
+ isLucee : server.keyExists( "lucee" ),
+ isBoxLang : server.keyExists( "boxlang" ),
+ isAdobe : server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase(
40
+ "ColdFusion"
41
+ )
42
},
-
43
// This flag enables/disables the tracking of request data to our storage facilities
44
// To disable all tracking, turn this master key off
45
enabled : true,
0 commit comments