Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11500
Modified Files:
month.php
Log Message:
Fixed windows date error, cleaned up webcal display in monthview.
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.127
retrieving revision 1.128
diff -C2 -d -r1.127 -r1.128
*** month.php 2 Oct 2004 00:09:38 -0000 1.127
--- month.php 8 Oct 2004 21:20:17 -0000 1.128
***************
*** 17,20 ****
--- 17,21 ----
$tomorrows_date = date('Ymd', strtotime("+1 day", $unix_time));
$yesterdays_date = date('Ymd', strtotime("-1 day", $unix_time));
+ $sidebar_date = localizeDate($dateFormat_week_list, $unix_time);
// find out next month
***************
*** 82,85 ****
--- 83,87 ----
'current_view' => $current_view,
'style_select' => $style_select,
+ 'sidebar_date' => $sidebar_date,
'l_goprint' => $lang['l_goprint'],
'l_preferences' => $lang['l_preferences'],
|