Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12957/phpicalendar/includes
Modified Files:
event.php
Log Message:
allow rss link to event popup option
Index: event.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** event.php 16 Feb 2007 06:25:42 -0000 1.40
--- event.php 16 Feb 2007 07:54:43 -0000 1.41
***************
*** 12,17 ****
}
#$event = $master_array[$_POST['date']][$_POST['time']][decode_popup($_POST['uid'])];
! $event = unserialize(stripslashes($_REQUEST['event_data']));
$organizer = unserialize($event['organizer']);
$attendee = unserialize($event['attendee']);
--- 12,19 ----
}
+
+
#$event = $master_array[$_POST['date']][$_POST['time']][decode_popup($_POST['uid'])];
! $event = unserialize(stripslashes($_REQUEST['event_data']));
$organizer = unserialize($event['organizer']);
$attendee = unserialize($event['attendee']);
|