CFINCLUDE throws unusual error with specific file
I have a file called verb_add.cfm that I want to include in another cfm file.
I have a line in my code as follows:
<cfinclude template="verb_add.cfm">
When I execute this code I get a most unusual error from ColdFusion:
Unknown Tag: cfinclue.
Notice the missing "d" from cfinclude in the error message. Yes it is spelled correctly in the code, but the error message from ColdFusion only has "cfinclude" once in the error message, when displaying the line of code causing the error. All other displays on the error page are "cfinclue".
I can change the name of the file, for example to verb_add2.cfm, and then change the template="" to match, and get the same cfinclue error.
I can include other files without any problem. But just this file, no matter what the actual name of the file is, will always throw a cfinclue error.
I have restarted ColdFusion and cleared the template cache from the ColdFusion admin.
Any help would be much appreciated.