|
From: FlorinCB <ory...@us...> - 2008-12-16 23:27:03
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18510 Modified Files: cal_functions.php Log Message: fix Index: cal_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_functions.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** cal_functions.php 16 Dec 2008 23:21:57 -0000 1.17 --- cal_functions.php 16 Dec 2008 23:26:57 -0000 1.18 *************** *** 644,653 **** function display() { ! global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders, ! $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser, ! $block_size, ! $cal_config, ! $cal_dateformat, ! $endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version, $cal_filter, $block_id; // TIMEZONE FIX --- 644,651 ---- function display() { ! global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders; ! global $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser; ! global $block_size, $cal_config, $cal_dateformat, $mx_bbcode; ! global $endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version, $cal_filter, $block_id; // TIMEZONE FIX *************** *** 709,713 **** } ! $zdesc = make_clickable( $zdesc ); $start_date = my_dateformat( $row['stamp'], $cal_dateformat ); $end_date = my_dateformat( $row['eventspan'], $cal_dateformat, 1 ); --- 707,711 ---- } ! $zdesc = $mx_bbcode->make_clickable($zdesc); $start_date = my_dateformat( $row['stamp'], $cal_dateformat ); $end_date = my_dateformat( $row['eventspan'], $cal_dateformat, 1 ); *************** *** 788,792 **** ); ! $template->pparse( 'body' ); return; } --- 786,790 ---- ); ! $template->pparse('body'); return; } |