diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index c8647df4c9..8233871da4 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -1503,7 +1503,7 @@ function get_calendar($initial = true, $echo = true) { '; if ( $previous ) { - $calendar_output .= "\n\t\t".'« ' . $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".' '; } @@ -1511,7 +1511,7 @@ function get_calendar($initial = true, $echo = true) { $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".' '; }