Code Duplication    Length = 5-5 lines in 2 locations

projects/plugins/jetpack/modules/widgets/search.php 2 locations

@@ 379-383 (lines=5) @@
376
				<label>
377
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
378
					<select class="jetpack-search-sort">
379
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
380
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
381
								<?php echo esc_html( $label ); ?>
382
							</option>
383
						<?php } ?>
384
					</select>
385
				</label>
386
			</div>
@@ 764-768 (lines=5) @@
761
					<select
762
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
763
						class="widefat jetpack-search-filters-widget__sort-order">
764
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
765
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
766
								<?php echo esc_html( $label ); ?>
767
							</option>
768
						<?php } ?>
769
					</select>
770
				</label>
771
			</p>