| @@ -1,21 +1,22 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if ( ! defined('WPINC') ) { | |
| 4 | - wp_die(); | |
| 3 | +if ( ! defined('ABSPATH') ) { | |
| 4 | + exit; | |
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -?><tr class="wpc-filter-tr <?php echo esc_attr( $attributes['class'] ); ?>-tr"<?php flrt_maybe_hide_row( $attributes ); ?>><?php | |
| 7 | +?> | |
| 8 | +<tr class="<?php echo esc_attr( flrt_filter_row_class( $attributes ) ); ?>"<?php flrt_maybe_hide_row( $attributes ); ?>><?php | |
| 8 | 9 | |
| 9 | 10 | flrt_include_admin_view('filter-field-label', array( |
| 10 | 11 | 'field_key' => $field_key, |
| 11 | - 'attributes' => $attributes | |
| 12 | + 'attributes' => $attributes | |
| 12 | 13 | ) |
| 13 | 14 | ); |
| 14 | 15 | |
| 15 | 16 | flrt_include_admin_view('filter-field-input', array( |
| 16 | 17 | 'field_key' => $field_key, |
| 17 | - 'attributes' => $attributes | |
| 18 | + 'attributes' => $attributes | |
| 18 | 19 | ) |
| 19 | 20 | ); |
| 20 | - | |
| 21 | -?></tr> | |
| 21 | +?> | |
| 22 | +</tr> | |