Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 374-378 (lines=5) @@
371
				<label>
372
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
373
					<select class="jetpack-search-sort">
374
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
375
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
376
								<?php echo esc_html( $label ); ?>
377
							</option>
378
						<?php } ?>
379
					</select>
380
				</label>
381
			</div>
@@ 759-763 (lines=5) @@
756
					<select
757
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
758
						class="widefat jetpack-search-filters-widget__sort-order">
759
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
760
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
761
								<?php echo esc_html( $label ); ?>
762
							</option>
763
						<?php } ?>
764
					</select>
765
				</label>
766
			</p>