aboutsummaryrefslogtreecommitdiffstats
path: root/includes/event.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2003-11-22 03:45:33 +0000
committerChad Little <clittle@users.sourceforge.net>2003-11-22 03:45:33 +0000
commitcfde005f011663c9b19f53384398e6bbf9a364c7 (patch)
tree51fc79ab03d7e11c9860cd04a7874533a37ac032 /includes/event.php
parent6407f1bedb91a8c9d35b00ff2d1756c0759f2bd0 (diff)
downloadphpicalendar-cfde005f011663c9b19f53384398e6bbf9a364c7.tar.gz
phpicalendar-cfde005f011663c9b19f53384398e6bbf9a364c7.tar.bz2
phpicalendar-cfde005f011663c9b19f53384398e6bbf9a364c7.zip
Updated files for 1.0.
Diffstat (limited to 'includes/event.php')
-rw-r--r--includes/event.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/includes/event.php b/includes/event.php
index 7fd47ed..96e2e93 100644
--- a/includes/event.php
+++ b/includes/event.php
@@ -8,17 +8,17 @@ function decode_popup ($item) {
return $item;
}
-$event = (isset($_REQUEST['event'])) ? decode_popup($_REQUEST['event']) : ('unset');
-$description = (isset($_REQUEST['description'])) ? decode_popup($_REQUEST['description']) : ('unset');
-$cal = (isset($_REQUEST['cal'])) ? decode_popup($_REQUEST['cal']) : ('unset');
-$start = (isset($_REQUEST['start'])) ? decode_popup($_REQUEST['start']) : ('unset');
-$end = (isset($_REQUEST['end'])) ? decode_popup($_REQUEST['end']) : ('unset');
-$status = (isset($_REQUEST['status'])) ? decode_popup($_REQUEST['status']) : ('unset');
-$location = (isset($_REQUEST['location'])) ? decode_popup($_REQUEST['location']) : ('unset');
-$url = (isset($_REQUEST['url'])) ? decode_popup($_REQUEST['url']) : ('unset');
-$organizer = (isset($_REQUEST['organizer'])) ? ($_REQUEST['organizer']) : ('unset');
+$event = (isset($HTTP_POST_VARS['event'])) ? decode_popup($HTTP_POST_VARS['event']) : ('unset');
+$description = (isset($HTTP_POST_VARS['description'])) ? decode_popup($HTTP_POST_VARS['description']) : ('unset');
+$cal = (isset($HTTP_POST_VARS['cal'])) ? decode_popup($HTTP_POST_VARS['cal']) : ('unset');
+$start = (isset($HTTP_POST_VARS['start'])) ? decode_popup($HTTP_POST_VARS['start']) : ('unset');
+$end = (isset($HTTP_POST_VARS['end'])) ? decode_popup($HTTP_POST_VARS['end']) : ('unset');
+$status = (isset($HTTP_POST_VARS['status'])) ? decode_popup($HTTP_POST_VARS['status']) : ('unset');
+$location = (isset($HTTP_POST_VARS['location'])) ? decode_popup($HTTP_POST_VARS['location']) : ('unset');
+$url = (isset($HTTP_POST_VARS['url'])) ? decode_popup($HTTP_POST_VARS['url']) : ('unset');
+$organizer = (isset($HTTP_POST_VARS['organizer'])) ? ($HTTP_POST_VARS['organizer']) : ('unset');
$organizer = unserialize (decode_popup ($organizer));
-$attendee = (isset($_REQUEST['attendee'])) ? ($_REQUEST['attendee']) : ('unset');
+$attendee = (isset($HTTP_POST_VARS['attendee'])) ? ($HTTP_POST_VARS['attendee']) : ('unset');
$attendee = unserialize (decode_popup ($attendee));
$cal_title_full = $cal.' '.$calendar_lang;

© 2014-2024 Faster IT GmbH | imprint | privacy policy