Code Duplication    Length = 7-7 lines in 2 locations

classes/PodsUI.php 2 locations

@@ 2530-2536 (lines=7) @@
2527
2528
                $get = $_GET;
2529
2530
                foreach ( $get as $k => $v ) {
2531
                    if ( is_array( $v ) || in_array( $k, $excluded_filters ) || strlen( $v ) < 1 )
2532
                        continue;
2533
			?>
2534
				<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
2535
			<?php
2536
                }
2537
2538
			if ( false !== $this->callback( 'header', $reorder ) ) {
2539
				return null;
@@ 3069-3075 (lines=7) @@
3066
3067
                    $get = $_GET;
3068
3069
                    foreach ( $get as $k => $v ) {
3070
                        if ( in_array( $k, $excluded_filters ) || strlen( $v ) < 1 )
3071
                            continue;
3072
                ?>
3073
                    <input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
3074
                <?php
3075
                    }
3076
3077
                    $zebra = true;
3078