Code Duplication    Length = 1-1 lines in 2 locations

includes/theme-settings.php 2 locations

@@ 45-45 (lines=1) @@
42
	{
43
		echo "<div class=\"pagination\"><span>Page ".$paged." of ".$pages."</span>";
44
		if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>&laquo; First</a>";
45
		if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>&lsaquo; Previous</a>";
46
47
		for ($i=1; $i <= $pages; $i++)
48
		{
@@ 55-55 (lines=1) @@
52
			}
53
		}
54
55
		if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Next &rsaquo;</a>";  
56
		if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last &raquo;</a>";
57
		echo "</div>\n";
58
	}