aboutsummaryrefslogtreecommitdiffstats
path: root/includes/event.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2003-11-19 07:54:09 +0000
committerChad Little <clittle@users.sourceforge.net>2003-11-19 07:54:09 +0000
commit19cac1259321933ee407ed6b077ef3d2aa9e9e58 (patch)
tree0be77a87ce554c71c61e8c61e7e4f27da9580a17 /includes/event.php
parentc5dca58b0b5707155d732a9f43894513bfc23b5c (diff)
downloadphpicalendar-19cac1259321933ee407ed6b077ef3d2aa9e9e58.tar.gz
phpicalendar-19cac1259321933ee407ed6b077ef3d2aa9e9e58.tar.bz2
phpicalendar-19cac1259321933ee407ed6b077ef3d2aa9e9e58.zip
Checked in a new popup system. Also added calname to calendar for popup reference.
Diffstat (limited to 'includes/event.php')
-rw-r--r--includes/event.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/includes/event.php b/includes/event.php
index c8492f0..b847c5b 100644
--- a/includes/event.php
+++ b/includes/event.php
@@ -3,48 +3,48 @@ define('BASE', '../');
include (BASE.'functions/init.inc.php');
// Load vars
-if (isset($HTTP_GET_VARS['event']) && ($HTTP_GET_VARS['event'] !== '') ) {
- $event=$HTTP_GET_VARS['event'];
+if (isset($HTTP_POST_VARS['event']) && ($HTTP_POST_VARS['event'] !== '') ) {
+ $event=$HTTP_POST_VARS['event'];
} else {
$event='';
}
-if (isset($HTTP_GET_VARS['description']) && ($HTTP_GET_VARS['description'] !== '') ) {
- $description=$HTTP_GET_VARS['description'];
+if (isset($HTTP_POST_VARS['description']) && ($HTTP_POST_VARS['description'] !== '') ) {
+ $description=$HTTP_POST_VARS['description'];
} else {
$description='';
}
-if (isset($HTTP_GET_VARS['cal']) && ($HTTP_GET_VARS['cal'] !== '') ) {
- $calendar_name=$HTTP_GET_VARS['cal'];
+if (isset($HTTP_POST_VARS['cal']) && ($HTTP_POST_VARS['cal'] !== '') ) {
+ $calendar_name=$HTTP_POST_VARS['cal'];
} else {
$calendar_name='';
}
-if (isset($HTTP_GET_VARS['start']) && ($HTTP_GET_VARS['start'] !== '') ) {
- $start=$HTTP_GET_VARS['start'];
+if (isset($HTTP_POST_VARS['start']) && ($HTTP_POST_VARS['start'] !== '') ) {
+ $start=$HTTP_POST_VARS['start'];
} else {
$start='';
}
-if (isset($HTTP_GET_VARS['end']) && ($HTTP_GET_VARS['end'] !== '') ) {
- $end=$HTTP_GET_VARS['end'];
+if (isset($HTTP_POST_VARS['end']) && ($HTTP_POST_VARS['end'] !== '') ) {
+ $end=$HTTP_POST_VARS['end'];
} else {
$end='';
}
-if (isset($HTTP_GET_VARS['status']) && ($HTTP_GET_VARS['status'] !== '') ) {
- $status=$HTTP_GET_VARS['status'];
+if (isset($HTTP_POST_VARS['status']) && ($HTTP_POST_VARS['status'] !== '') ) {
+ $status=$HTTP_POST_VARS['status'];
} else {
$status='';
}
-if (isset($HTTP_GET_VARS['location']) && ($HTTP_GET_VARS['location'] !== '') ) {
- $location=$HTTP_GET_VARS['location'];
+if (isset($HTTP_POST_VARS['location']) && ($HTTP_POST_VARS['location'] !== '') ) {
+ $location=$HTTP_POST_VARS['location'];
} else {
$location='';
}
-if (isset($HTTP_GET_VARS['organizer']) && ($HTTP_GET_VARS['organizer'] !== '') ) {
- $organizer=$HTTP_GET_VARS['organizer'];
+if (isset($HTTP_POST_VARS['organizer']) && ($HTTP_POST_VARS['organizer'] !== '') ) {
+ $organizer=$HTTP_POST_VARS['organizer'];
} else {
$organizer='';
}
-if (isset($HTTP_GET_VARS['attendee']) && ($HTTP_GET_VARS['attendee'] !== '') ) {
- $attendee=$HTTP_GET_VARS['attendee'];
+if (isset($HTTP_POST_VARS['attendee']) && ($HTTP_POST_VARS['attendee'] !== '') ) {
+ $attendee=$HTTP_POST_VARS['attendee'];
} else {
$attendee='';
}
@@ -179,4 +179,4 @@ if ($location) {
</body>
<!-- End PAGE -->
-</html> \ No newline at end of file
+</html>

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