|
From: Jon O. <jon...@us...> - 2005-10-12 15:38:46
|
Update of /cvsroot/mxbb/mx_calsnails In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16141/modules/mx_calsnails Modified Files: mx_calendar_events.php Log Message: nicer events layout Index: mx_calendar_events.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/mx_calendar_events.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** mx_calendar_events.php 1 Oct 2005 14:12:12 -0000 1.11 --- mx_calendar_events.php 12 Oct 2005 15:38:35 -0000 1.12 *************** *** 216,220 **** if ( $ini_date != my_dateformat( $row['eventspan'], $block_datefmt, 1 ) ) { ! $template->assign_block_vars( 'event_row.event_row_switch_endday', array() ); } $lastdate = $ini_date; --- 216,220 ---- if ( $ini_date != my_dateformat( $row['eventspan'], $block_datefmt, 1 ) ) { ! $template->assign_block_vars( 'event_row.event_row_switch_day.event_row_switch_endday', array() ); } $lastdate = $ini_date; *************** *** 255,271 **** { case CALRANGE_TODAY: ! $events_label = $lang['Ev_this_day'] . ' (' . $curdayname . '): '; break; case CALRANGE_THIS_WEEK: ! $events_label = $lang['Ev_this_week'] . '' . $currentweek . ': '; break; case CALRANGE_NEXT_WEEK: ! $events_label = $lang['Ev_next_week'] . '' . $nextweek . ': ' ; break; case CALRANGE_NEXT_MONTH: ! $events_label = $lang['Ev_next_month'] . ' (' . $nextmonthname . '): '; break; case CALRANGE_THIS_MONTH: ! $events_label = $lang['Ev_this_month'] . ' (' . $curmonthname . '): '; break; default: --- 255,271 ---- { case CALRANGE_TODAY: ! $events_label = $lang['Ev_this_day'] . ' (' . $curdayname . ')'; break; case CALRANGE_THIS_WEEK: ! $events_label = $lang['Ev_this_week'] . '' . $currentweek; break; case CALRANGE_NEXT_WEEK: ! $events_label = $lang['Ev_next_week'] . '' . $nextweek; break; case CALRANGE_NEXT_MONTH: ! $events_label = $lang['Ev_next_month'] . ' (' . $nextmonthname . ')'; break; case CALRANGE_THIS_MONTH: ! $events_label = $lang['Ev_this_month'] . ' (' . $curmonthname . ')'; break; default: |