Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 392-396 (lines=5) @@
389
				<label>
390
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
391
					<select class="jetpack-search-sort">
392
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
393
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
394
								<?php echo esc_html( $label ); ?>
395
							</option>
396
						<?php } ?>
397
					</select>
398
				</label>
399
			</div>
@@ 777-781 (lines=5) @@
774
					<select
775
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
776
						class="widefat jetpack-search-filters-widget__sort-order">
777
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
778
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
779
								<?php echo esc_html( $label ); ?>
780
							</option>
781
						<?php } ?>
782
					</select>
783
				</label>
784
			</p>