Update of /cvsroot/phpicalendar/phpicalendar
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2088
Modified Files:
month.php year.php
Log Message:
progress on recurrence
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.144
retrieving revision 1.145
diff -C2 -d -r1.144 -r1.145
*** month.php 15 Dec 2008 17:25:27 -0000 1.144
--- month.php 16 Dec 2008 15:46:24 -0000 1.145
***************
*** 5,9 ****
require_once(BASE.'functions/list_functions.php');
require_once(BASE.'functions/template.php');
! header("Content-Type: text/html; charset=$charset");
if ($phpiCal_config->minical_view == 'current') $minical_view = 'month';
--- 5,9 ----
require_once(BASE.'functions/list_functions.php');
require_once(BASE.'functions/template.php');
! header("Content-Type: text/html; charset=$phpiCal_config->charset");
if ($phpiCal_config->minical_view == 'current') $minical_view = 'month';
Index: year.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** year.php 12 Dec 2008 06:22:58 -0000 1.48
--- year.php 16 Dec 2008 15:46:24 -0000 1.49
***************
*** 5,9 ****
require_once(BASE.'functions/list_functions.php');
require_once(BASE.'functions/template.php');
! header("Content-Type: text/html; charset=$charset");
ereg ("([0-9]{4})([0-9]{2})([0-9]{2})", $getdate, $day_array2);
--- 5,9 ----
require_once(BASE.'functions/list_functions.php');
require_once(BASE.'functions/template.php');
! header("Content-Type: text/html; charset=$phpiCal_config->charset");
ereg ("([0-9]{4})([0-9]{2})([0-9]{2})", $getdate, $day_array2);
***************
*** 66,70 ****
'display_date' => $this_year,
'sidebar_date' => $sidebar_date,
! 'rss_powered' => $phpiCal_config->rss_powered,
'rss_available' => '',
'rss_valid' => '',
--- 66,70 ----
'display_date' => $this_year,
'sidebar_date' => $sidebar_date,
! 'rss_powered' => $rss_powered,
'rss_available' => '',
'rss_valid' => '',
***************
*** 79,83 ****
'prev_year' => $prev_year,
'show_goto' => '',
! 'show_user_login' => $show_user_login,
'invalid_login' => $invalid_login,
'login_querys' => $login_querys,
--- 79,83 ----
'prev_year' => $prev_year,
'show_goto' => '',
! 'show_user_login' => $phpiCal_config->show_user_login,
'invalid_login' => $invalid_login,
'login_querys' => $login_querys,
***************
*** 86,90 ****
'logout_querys' => $logout_querys,
'list_icals' => $list_icals,
! 'list_icals_pick' => $list_icals_pick,
'list_years' => $list_years,
'list_months' => $list_months,
--- 86,90 ----
'logout_querys' => $logout_querys,
'list_icals' => $list_icals,
! 'list_icals_pick' => $list_icals_pick,
'list_years' => $list_years,
'list_months' => $list_months,
***************
*** 104,108 ****
'l_month' => $lang['l_month'],
'l_year' => $lang['l_year'],
! 'l_search' => $lang['l_search'],
'l_subscribe' => $lang['l_subscribe'],
'l_download' => $lang['l_download'],
--- 104,108 ----
'l_month' => $lang['l_month'],
'l_year' => $lang['l_year'],
! 'l_search' => $lang['l_search'],
'l_subscribe' => $lang['l_subscribe'],
'l_download' => $lang['l_download'],
***************
*** 128,132 ****
));
}
! if ($show_search != 'yes') {
$page->nosearch($page);
}
--- 128,132 ----
));
}
! if ($phpiCal_config->show_search != 'yes') {
$page->nosearch($page);
}
|