Skip to content

Instantly share code, notes, and snippets.

@bardware
Created March 14, 2019 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bardware/aaff214e5532e1ee44278edb5ff46dd4 to your computer and use it in GitHub Desktop.
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
<!---
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