I am a bit confused with this, as I am still getting back to Coldfusion after a long time of not working with it.
Why return true as the return value on this function if the output is equal to false? <cffunction name=”onApplicationStart” returnType=”boolean” output=”false”> <!--- When did the application start? ---> <cfset application.appStarted = now()> <cfreturn true> </cffunction> Why set the returnType to void on this one? <cffunction name=”onRequestEnd” returnType=”void” output=”true”> <!--- Display our Site Footer at bottom of every page ---> <cfinclude template=”SiteFooter.cfm”> </cffunction> Thanks in advance, -- -- You received this message because you are subscribed to the "Houston ColdFusion Users' Group" discussion list. To unsubscribe, send email to [email protected] For more options, visit http://groups.google.com/group/houcfug?hl=en --- You received this message because you are subscribed to the Google Groups "Houston ColdFusion Users' Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
