Created
March 14, 2019 17:52
-
-
Save bardware/aaff214e5532e1ee44278edb5ff46dd4 to your computer and use it in GitHub Desktop.
Invalid CFML construct found on line 23 at column 36. ColdFusion was looking at the following text: Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- | |
Invalid CFML construct found on line 23 at column 36. | |
ColdFusion was looking at the following text: | |
Function | |
The CFML compiler was processing: | |
An expression beginning with callStack, on line 23, column 23.This message is usually caused by a problem in the expressions structure. | |
A cfset tag beginning on line 23, column 6. | |
A cfset tag beginning on line 23, column 6. | |
The error occurred in D:/projects/commandbox.cf2018/index.cfm: line 23 | |
21 : | |
22 : <cfloop from="1" to="#ArrayLen(callStack)#" index="i"> | |
23 : <cfset csMethod = callStack[i].Function> | |
24 : </cfloop> | |
---> | |
<cfset callStack = callStackGet()> | |
<cfloop from="1" to="#ArrayLen(callStack)#" index="i"> | |
<cfset csMethod = callStack[i].Function> | |
</cfloop> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment