diff --git a/templates/event-calendar.php b/templates/event-calendar.php index e1a52514..d46dab0d 100644 --- a/templates/event-calendar.php +++ b/templates/event-calendar.php @@ -115,7 +115,7 @@ $next = $wpdb->get_row("SELECT MONTH(post_date) AS month, YEAR(post_date) AS yea $calendar_caption = _x('%1$s %2$s', 'calendar caption', 'sportspress'); $calendar_output = '
| « ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . ' | '; + $calendar_output .= "\n\t\t".'« ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . ' | '; } else { $calendar_output .= "\n\t\t".''; } @@ -148,7 +148,7 @@ if ( $previous ) { $calendar_output .= "\n\t\t".' | '; if ( $next ) { - $calendar_output .= "\n\t\t".' | ' . $wp_locale->get_month_abbrev($wp_locale->get_month($next->month)) . ' » | '; + $calendar_output .= "\n\t\t".'' . $wp_locale->get_month_abbrev($wp_locale->get_month($next->month)) . ' » | '; } else { $calendar_output .= "\n\t\t".''; } @@ -214,7 +214,7 @@ for ( $day = 1; $day <= $daysinmonth; ++$day ) { $newrow = false; if ( $day == gmdate('j', current_time('timestamp')) && $thismonth == gmdate('m', current_time('timestamp')) && $thisyear == gmdate('Y', current_time('timestamp')) ) - $calendar_output .= ' | '; + $calendar_output .= ' | '; else $calendar_output .= ' | '; | ||||||||||||