root/trunk/website/forums/admin/Application.cfm @ 28

Revision 5, 0.6 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

Line 
1<cfsetting enablecfoutputonly=true>
2<!---
3        Name         : Application.cfm
4        Author       : Raymond Camden
5        Created      : June 01, 2004
6        Last Updated : July 18, 2006
7        History      : Flag to root admin to say we are in admin (rkc 7/18/06)
8        Purpose          :
9--->
10
11<!--- include root app --->
12<cfset variables.isAdmin = true>
13<cfinclude template="../Application.cfm">
14
15<cfif not request.udf.isLoggedOn()>
16        <cfinclude template="login.cfm">
17        <cfabort>
18</cfif>
19
20<!--- must be the correct authentication --->
21<cfif not isUserInRole("forumsadmin")>
22        <cflocation url="../" addtoken="false">
23        <cfabort>
24</cfif>
25
26<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.