Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/general-template.php 2 locations

@@ 2012-2016 (lines=5) @@
2009
	<tfoot>
2010
	<tr>';
2011
2012
	if ( $previous ) {
2013
		$calendar_output .= "\n\t\t".'<td colspan="3" id="prev"><a href="' . get_month_link( $previous->year, $previous->month ) . '">&laquo; ' .
2014
			$wp_locale->get_month_abbrev( $wp_locale->get_month( $previous->month ) ) .
2015
		'</a></td>';
2016
	} else {
2017
		$calendar_output .= "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
2018
	}
2019
@@ 2022-2026 (lines=5) @@
2019
2020
	$calendar_output .= "\n\t\t".'<td class="pad">&nbsp;</td>';
2021
2022
	if ( $next ) {
2023
		$calendar_output .= "\n\t\t".'<td colspan="3" id="next"><a href="' . get_month_link( $next->year, $next->month ) . '">' .
2024
			$wp_locale->get_month_abbrev( $wp_locale->get_month( $next->month ) ) .
2025
		' &raquo;</a></td>';
2026
	} else {
2027
		$calendar_output .= "\n\t\t".'<td colspan="3" id="next" class="pad">&nbsp;</td>';
2028
	}
2029