Update of /cvsroot/phpicalendar/phpicalendar/rss
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7604/phpicalendar/rss
Modified Files:
rss.php
Log Message:
fixes for 1634128 and allow passing event data via request instead of just post
Index: rss.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** rss.php 14 Nov 2006 07:01:53 -0000 1.46
--- rss.php 16 Feb 2007 06:25:42 -0000 1.47
***************
*** 189,193 ****
$rss_title = urldecode ("$dayofweek: $event_text");
! $rss_link = "$default_path/day.php?getdate=$thisdate&cal=$cal";
if (isset($cpath) && $cpath !='') $rss_link.="&cpath=$cpath";
$rss_description = htmlspecialchars ("$dayofweek $event_start: $description");
--- 189,194 ----
$rss_title = urldecode ("$dayofweek: $event_text");
! $event_data = serialize($val);
! $rss_link = "$default_path/event.php?getdate=$thisdate&cal=$cal&event_data=$event_data";
if (isset($cpath) && $cpath !='') $rss_link.="&cpath=$cpath";
$rss_description = htmlspecialchars ("$dayofweek $event_start: $description");
|