Code Duplication    Length = 7-7 lines in 2 locations

classes/PodsUI.php 2 locations

@@ 2568-2574 (lines=7) @@
2565
2566
                $get = $_GET;
2567
2568
                foreach ( $get as $k => $v ) {
2569
                    if ( is_array( $v ) || in_array( $k, $excluded_filters ) || strlen( $v ) < 1 )
2570
                        continue;
2571
			?>
2572
				<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
2573
			<?php
2574
                }
2575
2576
			if ( false !== $this->callback( 'header', $reorder ) ) {
2577
				return null;
@@ 3100-3106 (lines=7) @@
3097
3098
                    $get = $_GET;
3099
3100
                    foreach ( $get as $k => $v ) {
3101
                        if ( in_array( $k, $excluded_filters ) || strlen( $v ) < 1 )
3102
                            continue;
3103
                ?>
3104
                    <input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" />
3105
                <?php
3106
                    }
3107
3108
                    $zebra = true;
3109