Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13538/phpicalendarxx
Modified Files:
index.php month.php
Log Message:
bug fix for repeating events where first day of month is same as repeat day
Index: index.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/index.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** index.php 14 Aug 2006 03:32:48 -0000 1.13
--- index.php 2 Nov 2006 08:06:03 -0000 1.14
***************
*** 2,6 ****
if (!isset($ALL_CALENDARS_COMBINED)) $ALL_CALENDARS_COMBINED = 'all_calendars_combined971';
! include "./config.inc.php";
if (isset($_COOKIE['phpicalendar'])) {
$phpicalendar = unserialize(stripslashes($_COOKIE['phpicalendar']));
--- 2,11 ----
if (!isset($ALL_CALENDARS_COMBINED)) $ALL_CALENDARS_COMBINED = 'all_calendars_combined971';
! if (is_file("./config.inc.php")){
! include "./config.inc.php";
! }else{
! header ( "Location:./admin/new.php");
! exit;
! }
if (isset($_COOKIE['phpicalendar'])) {
$phpicalendar = unserialize(stripslashes($_COOKIE['phpicalendar']));
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.137
retrieving revision 1.138
diff -C2 -d -r1.137 -r1.138
*** month.php 10 Apr 2006 02:21:07 -0000 1.137
--- month.php 2 Nov 2006 08:06:03 -0000 1.138
***************
*** 57,62 ****
'event_js' => BASE.'functions/event.js',
'footer' => BASE.'templates/'.$template.'/footer.tpl',
! 'calendar_nav' => BASE.'templates/'.$template.'/calendar_nav.tpl',
! 'search_box' => BASE.'templates/'.$template.'/search_box.tpl'
));
--- 57,62 ----
'event_js' => BASE.'functions/event.js',
'footer' => BASE.'templates/'.$template.'/footer.tpl',
! 'calendar_nav' => BASE.'templates/'.$template.'/calendar_nav.tpl',
! 'search_box' => BASE.'templates/'.$template.'/search_box.tpl'
));
|