Can’t find a hint September 20th, 2006

I couldn’t find this on the Goggle, so: if your Coldfusion template occasionally furnishes you with the unhelpful, lineless error:
can’t load a null

then this might be caused by the following. You may be trying to compile a function using something like this code:

<cfset bar = “something”>
<cffunction name=”foo”>
    <cfargument name=”bar” default=”#bar#”>
</cffunction>

At the point of trying to interpret [...]