Gefdue
Gefdue

Reputation: 11

variable/function declaration in coldfusion

I have several .cfm pages that make up my ColdFusion website.

In one of the .cfm page there is a variable/function used. This variable/function is named "RECREATE". I have checked that the current .cfm page does not have "RECREATE" defined. So, my question is how do I identify which cfm page is "RECREATE" defined??

Upvotes: 1

Views: 115

Answers (1)

Adam Cameron
Adam Cameron

Reputation: 29870

Do a search in your source code for "recreate". Or if you have only "several" .cfm pages in the site... just look at them!

Your code, btw, should be engineered coherently enough that you can infer the location of code by what the code does, and how it is called. Sounds like you could do with some replanning / reorganisation?

Upvotes: 2

Related Questions