Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv14531/includes
Modified Files:
event.php footer.inc.php
Log Message:
Updated files for 1.0.
Index: event.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** event.php 21 Nov 2003 20:38:51 -0000 1.15
--- event.php 22 Nov 2003 03:45:33 -0000 1.16
***************
*** 9,23 ****
}
! $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');
$organizer = unserialize (decode_popup ($organizer));
! $attendee = (isset($_REQUEST['attendee'])) ? ($_REQUEST['attendee']) : ('unset');
$attendee = unserialize (decode_popup ($attendee));
$cal_title_full = $cal.' '.$calendar_lang;
--- 9,23 ----
}
! $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($HTTP_POST_VARS['attendee'])) ? ($HTTP_POST_VARS['attendee']) : ('unset');
$attendee = unserialize (decode_popup ($attendee));
$cal_title_full = $cal.' '.$calendar_lang;
Index: footer.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** footer.inc.php 13 Nov 2003 17:33:22 -0000 1.10
--- footer.inc.php 22 Nov 2003 03:45:33 -0000 1.11
***************
*** 1,5 ****
<?php
! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 0.9.5</a>";
if ($enable_rss == 'yes') {
echo "<br>\n";
--- 1,5 ----
<?php
! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 1.0</a>";
if ($enable_rss == 'yes') {
echo "<br>\n";
|