aboutsummaryrefslogtreecommitdiffstats
path: root/includes/event.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2004-09-02 18:41:12 +0000
committerChad Little <clittle@users.sourceforge.net>2004-09-02 18:41:12 +0000
commitd06e6031b26322c5a5bca8cdfdbad196e5ebf002 (patch)
tree4edf6d435535ac25375c7e22a66ceebffead7d68 /includes/event.php
parentaa3869c95eddd0bdde4c985771cda50223a34e98 (diff)
downloadphpicalendar-d06e6031b26322c5a5bca8cdfdbad196e5ebf002.tar.gz
phpicalendar-d06e6031b26322c5a5bca8cdfdbad196e5ebf002.tar.bz2
phpicalendar-d06e6031b26322c5a5bca8cdfdbad196e5ebf002.zip
Updated to $_POST
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 53c7ed8..7bfd5d4 100644
--- a/includes/event.php
+++ b/includes/event.php
@@ -9,17 +9,17 @@ function decode_popup ($item) {
return $item;
}
-$event = (isset($HTTP_POST_VARS['event'])) ? decode_popup($HTTP_POST_VARS['event']) : ('');
-$description = (isset($HTTP_POST_VARS['description'])) ? decode_popup($HTTP_POST_VARS['description']) : ('');
-$cal = (isset($HTTP_POST_VARS['cal'])) ? decode_popup($HTTP_POST_VARS['cal']) : ('');
-$start = (isset($HTTP_POST_VARS['start'])) ? decode_popup($HTTP_POST_VARS['start']) : ('');
-$end = (isset($HTTP_POST_VARS['end'])) ? decode_popup($HTTP_POST_VARS['end']) : ('');
-$status = (isset($HTTP_POST_VARS['status'])) ? decode_popup($HTTP_POST_VARS['status']) : ('');
-$location = (isset($HTTP_POST_VARS['location'])) ? decode_popup($HTTP_POST_VARS['location']) : ('');
-$url = (isset($HTTP_POST_VARS['url'])) ? decode_popup($HTTP_POST_VARS['url']) : ('');
-$organizer = (isset($HTTP_POST_VARS['organizer'])) ? ($HTTP_POST_VARS['organizer']) : ('');
+$event = (isset($_POST['event'])) ? decode_popup($_POST['event']) : ('');
+$description = (isset($_POST['description'])) ? decode_popup($_POST['description']) : ('');
+$cal = (isset($_POST['cal'])) ? decode_popup($_POST['cal']) : ('');
+$start = (isset($_POST['start'])) ? decode_popup($_POST['start']) : ('');
+$end = (isset($_POST['end'])) ? decode_popup($_POST['end']) : ('');
+$status = (isset($_POST['status'])) ? decode_popup($_POST['status']) : ('');
+$location = (isset($_POST['location'])) ? decode_popup($_POST['location']) : ('');
+$url = (isset($_POST['url'])) ? decode_popup($_POST['url']) : ('');
+$organizer = (isset($_POST['organizer'])) ? ($_POST['organizer']) : ('');
$organizer = unserialize (decode_popup ($organizer));
-$attendee = (isset($HTTP_POST_VARS['attendee'])) ? ($HTTP_POST_VARS['attendee']) : ('');
+$attendee = (isset($_POST['attendee'])) ? ($_POST['attendee']) : ('');
$attendee = unserialize (decode_popup ($attendee));
$cal_title_full = $cal.' '.$calendar_lang;

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