|
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 : September 2, 2004 |
|---|
| 6 | Last Updated : September 2, 2004 |
|---|
| 7 | History : |
|---|
| 8 | Purpose : |
|---|
| 9 | ---> |
|---|
| 10 | |
|---|
| 11 | <!--- include root app ---> |
|---|
| 12 | <cfinclude template="../Application.cfm"> |
|---|
| 13 | |
|---|
| 14 | <cfif not request.udf.isLoggedOn()> |
|---|
| 15 | <cfinclude template="login.cfm"> |
|---|
| 16 | <cfabort> |
|---|
| 17 | </cfif> |
|---|
| 18 | |
|---|
| 19 | <!--- must be the correct authentication ---> |
|---|
| 20 | <cfif not isUserInRole("surveyadmin")> |
|---|
| 21 | <cflocation url="../" addtoken="false"> |
|---|
| 22 | <cfabort> |
|---|
| 23 | </cfif> |
|---|
| 24 | |
|---|
| 25 | <cfsetting enablecfoutputonly=false> |
|---|