Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv16915
Modified Files:
print.php
Log Message:
Month date now appears as expected.
Index: print.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** print.php 17 Sep 2003 05:18:23 -0000 1.17
--- print.php 20 Sep 2003 20:59:06 -0000 1.18
***************
*** 38,42 ****
$print_prev_nav = $last_week_lang;
} elseif ($printview == 'month') {
! $print_title = localizeDate ($dateFormat_month, strtotime($getdate));
$next = date("Ymd", strtotime("+1 month", $unix_time));
$prev = date("Ymd", strtotime("-1 month", $unix_time));
--- 38,42 ----
$print_prev_nav = $last_week_lang;
} elseif ($printview == 'month') {
! $display_date = localizeDate ($dateFormat_month, strtotime($getdate));
$next = date("Ymd", strtotime("+1 month", $unix_time));
$prev = date("Ymd", strtotime("-1 month", $unix_time));
|