From cfde005f011663c9b19f53384398e6bbf9a364c7 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 22 Nov 2003 03:45:33 +0000 Subject: Updated files for 1.0. --- includes/event.php | 20 ++++++++++---------- includes/footer.inc.php | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'includes') 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; diff --git a/includes/footer.inc.php b/includes/footer.inc.php index be2b953..52a9878 100644 --- a/includes/footer.inc.php +++ b/includes/footer.inc.php @@ -1,6 +1,6 @@
$powered_by_lang PHP iCalendar 0.9.5"; +echo "

$powered_by_lang PHP iCalendar 1.0"; if ($enable_rss == 'yes') { echo "
\n"; if ((isset($current_view)) && ($current_view == 'rssindex')) { -- cgit v1.2.3