root/trunk/website/blog/confirmsubscription.cfm @ 19

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

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

Line 
1<cfsetting enablecfoutputonly=true>
2<cfprocessingdirective pageencoding="utf-8">
3<!---
4        Name         : Confirm Subscription
5        Author       : Raymond Camden
6        Created      : July 7, 2006
7        Last Updated : August 20, 2006
8        History      : use of rb (rkc 8/20/06)
9        Purpose          : Confirms a subscription
10--->
11
12<cfif not isDefined("url.t")>
13        <cflocation url="/" addToken="false">
14<cfelse>
15        <cftry>
16                <cfset entry = application.blog.confirmSubscription(url.t)>
17                <cfcatch>
18                        <!--- Do nothing, since most likely it is a spammer. --->
19                        <cfdump var="#cfcatch#">
20                </cfcatch>
21        </cftry>
22</cfif>
23
24
25<cfmodule template="tags/layout.cfm" title="#rb("subscribeconfirm")#">
26       
27        <cfoutput>
28        <div class="date"><b>#rb("subscribeconfirm")#</b></div>
29       
30        <div class="body">
31        #rb("subscribeconfirmbody")#
32        </div>
33        </cfoutput>
34       
35</cfmodule>
36
37<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.