root/trunk/website/Application.cfc @ 47

Revision 46, 0.5 kB (checked in by danwilson, 13 years ago)

Updating site with extra files

Line 
1<cfcomponent output="false">
2
3        <cfset this.sessionManagement = true />
4        <cfset this.sessionTimeout = createTimespan(0,1,0,0) />
5        <cfset this.setClientCookies = true />
6        <cfset this.name = "model_glue_com"/>
7        <cfset request.mashed.mode = "content" />
8
9        <cffunction name="onMissingTemplate" returnType="boolean" output="false">
10                <cfargument name="thePage" type="string" required="true">
11                <cflocation url="/missing.cfm?thepage=#urlEncodedFormat(arguments.thePage)#" addToken="false">
12        </cffunction>
13
14</cfcomponent>
Note: See TracBrowser for help on using the browser.