Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

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