You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, found that vars in condition statement are not parsed: <cffunction name = "Update" access = "public" returntype = "boolean"> <cfset var loop_index_countvar=10 /> <cfset var loop_index=1 /> <cfloop condition = "loop_index less than loop_index_countvar"> <cfset loop_index=loop_index+1 /> </cfloop> </cffunction>
loop_index_countvar - this var is reported as unused.
The text was updated successfully, but these errors were encountered:
Hi, found that vars in condition statement are not parsed:
<cffunction name = "Update" access = "public" returntype = "boolean"> <cfset var loop_index_countvar=10 /> <cfset var loop_index=1 /> <cfloop condition = "loop_index less than loop_index_countvar"> <cfset loop_index=loop_index+1 /> </cfloop> </cffunction>
loop_index_countvar - this var is reported as unused.
The text was updated successfully, but these errors were encountered: