onSessionEnd not working properly
the code in my application.cfc doesn't appear to be running
<cffunction name="onSessionEnd" returnType="void" output="false">
<cfquery name="deleteCartRows" datasource=#APPLICATION.datasource#>
DELETE from webCart
WHERE unique_session_ref = "#session.unique_session_ref#"
</cfquery>
</cffunction>
what am I doing wrong ? the unique_session_ref field is of type varchar (mySQL database) - it holds a UUID
