Code Duplication    Length = 7-7 lines in 2 locations

classes/PodsUI.php 2 locations

@@ 2891-2897 (lines=7) @@
2888
2889
				$get = $_GET;
2890
2891
			foreach ( $get as $k => $v ) {
2892
				if ( is_array( $v ) || in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) {
2893
					continue;}
2894
			?>
2895
			<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
2896
			<?php
2897
			}
2898
2899
			if ( false !== $this->callback( 'header', $reorder ) ) {
2900
				return null;
@@ 3471-3477 (lines=7) @@
3468
3469
					$get = $_GET;
3470
3471
					foreach ( $get as $k => $v ) {
3472
						if ( in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) {
3473
							continue;
3474
						}
3475
						?>
3476
						<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
3477
						<?php
3478
					}
3479
3480
					$zebra = true;