Code Duplication    Length = 5-5 lines in 2 locations

modules/widgets/search.php 2 locations

@@ 370-374 (lines=5) @@
367
				<label>
368
					<?php esc_html_e( 'Sort by', 'jetpack' ); ?>
369
					<select class="jetpack-search-sort">
370
						<?php foreach ( $this->get_sort_types() as $sort => $label ) { ?>
371
							<option value="<?php echo esc_attr( $sort ); ?>" <?php selected( $current_sort, $sort ); ?>>
372
								<?php echo esc_html( $label ); ?>
373
							</option>
374
						<?php } ?>
375
					</select>
376
				</label>
377
			</div>
@@ 712-716 (lines=5) @@
709
					<select
710
						name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>"
711
						class="widefat jetpack-search-filters-widget__sort-order">
712
						<?php foreach ( $this->get_sort_types() as $sort_type => $label ) { ?>
713
							<option value="<?php echo esc_attr( $sort_type ); ?>" <?php selected( $instance['sort'], $sort_type ); ?>>
714
								<?php echo esc_html( $label ); ?>
715
							</option>
716
						<?php } ?>
717
					</select>
718
				</label>
719
			</p>