The string is not closed.

Sample code

<cfdump var="#myObj.myManyArgedMethod(
    arg1 = 1,
    arg2 = 2,
    arg3 = 3,
    arg4 = 4
)#>

Explanation

This error appears when you forget to close an attribute value with a closing quote.

Easy to miss if you drop each argument onto different lines as in the sample code.

The final line should be:

)#">

Instead of:

)#>

Submitted by Adrian Lynch on Wednesday 12 November 2008

Add a comment or subscribe to this error