Code Duplication    Length = 7-7 lines in 2 locations

wp-includes/general-template.php 2 locations

@@ 1979-1985 (lines=7) @@
1976
	<tfoot>
1977
	<tr>';
1978
1979
	if ( $previous ) {
1980
		$calendar_output .= "\n\t\t".'<td colspan="3" id="prev"><a href="' . get_month_link( $previous->year, $previous->month ) . '">&laquo; ' .
1981
			$wp_locale->get_month_abbrev( $wp_locale->get_month( $previous->month ) ) .
1982
		'</a></td>';
1983
	} else {
1984
		$calendar_output .= "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
1985
	}
1986
1987
	$calendar_output .= "\n\t\t".'<td class="pad">&nbsp;</td>';
1988
@@ 1989-1995 (lines=7) @@
1986
1987
	$calendar_output .= "\n\t\t".'<td class="pad">&nbsp;</td>';
1988
1989
	if ( $next ) {
1990
		$calendar_output .= "\n\t\t".'<td colspan="3" id="next"><a href="' . get_month_link( $next->year, $next->month ) . '">' .
1991
			$wp_locale->get_month_abbrev( $wp_locale->get_month( $next->month ) ) .
1992
		' &raquo;</a></td>';
1993
	} else {
1994
		$calendar_output .= "\n\t\t".'<td colspan="3" id="next" class="pad">&nbsp;</td>';
1995
	}
1996
1997
	$calendar_output .= '
1998
	</tr>