From: <ji...@us...> - 2005-11-30 17:06:05
|
Update of /cvsroot/phpicalendar/phpicalendar/rss In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3716/phpicalendar/rss Modified Files: rss.php Log Message: temporary fix to calname problem. Still need to deal with webcalnames better Index: rss.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss.php,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** rss.php 23 Nov 2005 07:51:01 -0000 1.33 --- rss.php 30 Nov 2005 17:05:56 -0000 1.34 *************** *** 22,26 **** //set the range of days to return based on the view chosen $rssview = $_GET['rssview']; ! if (isset($_GET['getdate'])){ $getdate = $_GET['getdate']; }else{ --- 22,26 ---- //set the range of days to return based on the view chosen $rssview = $_GET['rssview']; ! if (isset($_GET['getdate']) && $_GET['getdate'] !=''){ $getdate = $_GET['getdate']; }else{ *************** *** 96,100 **** //allow phpicalendar to use calendar subdirectories - see bbs ! $cal_displayname = getCalendarName(urldecode($cal)); if ($cal == $ALL_CALENDARS_COMBINED) { $temp = explode("/",$calendar_path); --- 96,100 ---- //allow phpicalendar to use calendar subdirectories - see bbs ! $cal_displayname = urldecode($cal); if ($cal == $ALL_CALENDARS_COMBINED) { $temp = explode("/",$calendar_path); |