Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14158
Modified Files:
config.inc.php month.php
Log Message:
Fixed display month bottom.
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.159
retrieving revision 1.160
diff -C2 -d -r1.159 -r1.160
*** config.inc.php 25 Oct 2004 17:19:53 -0000 1.159
--- config.inc.php 25 Oct 2004 17:43:31 -0000 1.160
***************
*** 32,36 ****
$display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box.
$allow_webcals = 'no'; // Allow http:// and webcal:// prefixed URLs to be used as the $cal for remote viewing of "subscribe-able" calendars. This does not have to be enabled to allow specific ones below.
! $this_months_events = 'yes'; // Display "This month's events" at the bottom off the month page.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
$show_search = 'yes'; // Show the search box in the sidebar.
--- 32,36 ----
$display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box.
$allow_webcals = 'no'; // Allow http:// and webcal:// prefixed URLs to be used as the $cal for remote viewing of "subscribe-able" calendars. This does not have to be enabled to allow specific ones below.
! $this_months_events = 'ys'; // Display "This month's events" at the bottom off the month page.
$enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
$show_search = 'yes'; // Show the search box in the sidebar.
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -d -r1.128 -r1.129
*** month.php 8 Oct 2004 21:20:17 -0000 1.128
--- month.php 25 Oct 2004 17:43:31 -0000 1.129
***************
*** 121,124 ****
--- 121,126 ----
if ($this_months_events == 'yes') {
$page->monthbottom($page);
+ } else {
+ $page->nomonthbottom($page);
}
$page->draw_subscribe($page);
|