Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22539
Modified Files:
month.php week.php
Log Message:
enable search box requires search.php update and search_box.tpl
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.129
retrieving revision 1.130
diff -C2 -d -r1.129 -r1.130
*** month.php 25 Oct 2004 17:43:31 -0000 1.129
--- month.php 13 Apr 2005 15:03:50 -0000 1.130
***************
*** 56,60 ****
'event_js' => BASE.'functions/event.js',
'footer' => BASE.'templates/'.$template.'/footer.tpl',
! 'calendar_nav' => BASE.'templates/'.$template.'/calendar_nav.tpl'
));
--- 56,61 ----
'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'
));
***************
*** 64,67 ****
--- 65,69 ----
'cal' => $cal,
'getdate' => $getdate,
+ 'cpath' => $cpath,
'calendar_name' => $calendar_name,
'display_date' => $display_date,
***************
*** 70,74 ****
'rss_available' => '',
'rss_valid' => '',
! 'show_search' => '',
'next_month' => $next_month,
'prev_month' => $prev_month,
--- 72,77 ----
'rss_available' => '',
'rss_valid' => '',
! 'show_search' => $show_search,
! 'show_search' => $show_search,
'next_month' => $next_month,
'prev_month' => $prev_month,
***************
*** 98,101 ****
--- 101,105 ----
'l_download' => $lang['l_download'],
'l_this_months' => $lang['l_this_months'],
+ 'l_search' => $lang['l_search'],
'l_powered_by' => $lang['l_powered_by'],
'l_this_site_is' => $lang['l_this_site_is']
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.120
retrieving revision 1.121
diff -C2 -d -r1.120 -r1.121
*** week.php 2 Oct 2004 00:09:38 -0000 1.120
--- week.php 13 Apr 2005 15:03:53 -0000 1.121
***************
*** 50,54 ****
'event_js' => BASE.'functions/event.js',
'footer' => BASE.'templates/'.$template.'/footer.tpl',
! 'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl'
));
--- 50,55 ----
'event_js' => BASE.'functions/event.js',
'footer' => BASE.'templates/'.$template.'/footer.tpl',
! 'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
! 'search_box' => BASE.'templates/'.$template.'/search_box.tpl'
));
***************
*** 59,62 ****
--- 60,64 ----
'cal' => $cal,
'getdate' => $getdate,
+ 'cpath' => $cpath,
'calendar_name' => $calendar_name,
'display_date' => $display_date,
***************
*** 66,70 ****
'rss_available' => '',
'rss_valid' => '',
! 'show_search' => '',
'next_day' => $next_day,
'next_week' => $next_week,
--- 68,72 ----
'rss_available' => '',
'rss_valid' => '',
! 'show_search' => $show_search,
'next_day' => $next_day,
'next_week' => $next_week,
***************
*** 98,101 ****
--- 100,104 ----
'l_subscribe' => $lang['l_subscribe'],
'l_download' => $lang['l_download'],
+ 'l_search' => $lang['l_search'],
'l_powered_by' => $lang['l_powered_by'],
'l_this_site_is' => $lang['l_this_site_is']
|