I have this line of code:
<cfset variable.currentCategory = 0>
I want to know what the `variable. part is. Does this have something to do with session variables? I have seen ‘session.’ before in CF, but not this. I am working with a huge amount of code and CF is not my wheelhouse. I can’t tell if this is something with ColdFusion, or something defined elsewhere in the code that I just haven’t found yet. Due to the nature of the question, it has made it very hard to look for an answer on google (try googling coldfusion variable lol). Thanks.
Edit
This line is specifically ‘variable’ and not the ‘variables’ scope. I think it has something to do with scopes, but I don’t know what.
It has nothing to do with the variables scope or the session scope. It is a variable names “variable” that contains a struct. It is possibly a typo, or possibly a very poorly named variable.