-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgm-cal-confirm.php
133 lines (54 loc) · 2.87 KB
/
pgm-cal-confirm.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
error_reporting(E_PARSE);
if($_GET['_SESSION'] != '' || $_POST['_SESSION'] != '' || $_COOKIE['_SESSION'] != '') { exit; }
###############################################################################
## Soholaunch(R) Site Management Tool
## Version 4.5
##
## Author: Mike Johnston [mike.johnston@soholaunch.com]
## Homepage: http://www.soholaunch.com
## Bug Reports: http://bugzilla.soholaunch.com
## Release Notes: sohoadmin/build.dat.php
###############################################################################
##############################################################################
## COPYRIGHT NOTICE
## Copyright 1999-2003 Soholaunch.com, Inc. and Mike Johnston
## Copyright 2003-2007 Soholaunch.com, Inc.
## All Rights Reserved.
##
## This script may be used and modified in accordance to the license
## agreement attached (license.txt) except where expressly noted within
## commented areas of the code body. This copyright notice and the comments
## comments above and below must remain intact at all times. By using this
## code you agree to indemnify Soholaunch.com, Inc, its coporate agents
## and affiliates from any liability that might arise from its use.
##
## Selling the code for this program without prior written consent is
## expressly forbidden and in violation of Domestic and International
## copyright laws.
###############################################################################
error_reporting(0);
include("pgm-site_config.php");
if ($id == "") { exit; }
$UPDATE_FLAG = 0;
$result = mysql_query("SELECT EVENT_SECURITYCODE FROM calendar_events WHERE PRIKEY = '$id'");
$tmp = mysql_fetch_array($result);
if ($tmp[EVENT_SECURITYCODE] == "~~~PENDING~~~") {
$UPDATE_FLAG = 1;
}
if ($UPDATE_FLAG == 1) {
mysql_query("UPDATE calendar_events SET EVENT_SECURITYCODE = 'Public' WHERE PRIKEY = '$id'");
$DISPLAY = "<BR><BR><BR><CENTER><DIV CLASS=text><h3>".lang("This event has been added to your calendar system.")."</h3></DIV></CENTER>\n";
} else {
$DISPLAY = "<BR><BR><BR><CENTER><DIV CLASS=text><FONT COLOR=MAROON>".lang("It appears this event has already been added to your system.")."</FONT></DIV></CENTER>\n";
}
?>
<HTML>
<HEAD>
<TITLE>Confirm Calendar Event</TITLE>
<LINK HREF="runtime.css" REL="stylesheet" TYPE="text/css">
</HEAD>
<BODY BGCOLOR="#EFEFEF" TEXT="#000000" LINK="#FF0000" VLINK="#FF0000" ALINK="#FF0000" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">
<? echo $DISPLAY; ?>
</BODY>
</HTML>