|
@@ 2589-2595 (lines=7) @@
|
| 2586 |
|
|
| 2587 |
|
$get = $_GET; |
| 2588 |
|
|
| 2589 |
|
foreach ( $get as $k => $v ) { |
| 2590 |
|
if ( is_array( $v ) || in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) |
| 2591 |
|
continue; |
| 2592 |
|
?> |
| 2593 |
|
<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" /> |
| 2594 |
|
<?php |
| 2595 |
|
} |
| 2596 |
|
|
| 2597 |
|
if ( false !== $this->callback( 'header', $reorder ) ) { |
| 2598 |
|
return null; |
|
@@ 3128-3134 (lines=7) @@
|
| 3125 |
|
|
| 3126 |
|
$get = $_GET; |
| 3127 |
|
|
| 3128 |
|
foreach ( $get as $k => $v ) { |
| 3129 |
|
if ( in_array( $k, $excluded_filters ) || strlen( $v ) < 1 ) |
| 3130 |
|
continue; |
| 3131 |
|
?> |
| 3132 |
|
<input type="hidden" name="<?php echo esc_attr( $k ); ?>" value="<?php echo esc_attr( $v ); ?>" /> |
| 3133 |
|
<?php |
| 3134 |
|
} |
| 3135 |
|
|
| 3136 |
|
$zebra = true; |
| 3137 |
|
|