← All changes
|
Libs/adminify-framework/fields/fieldset/fieldset.php
+2
-2
4.3.2
→
4.0.5.4
View file →
| @@ -15,9 +15,9 @@ | ||
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | public function render() { |
| 18 | 18 | |
| 19 | - echo wp_kses_post( $this->field_before() ); | |
| 19 | + echo $this->field_before(); | |
| 20 | 20 | |
| 21 | 21 | echo '<div class="adminify-fieldset-content" data-depend-id="'. esc_attr( $this->field['id'] ) .'">'; |
| 22 | 22 | |
| 23 | 23 | foreach ( $this->field['fields'] as $field ) { |
| @@ -32,9 +32,9 @@ | ||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | echo '</div>'; |
| 35 | 35 | |
| 36 | - echo wp_kses_post( $this->field_after() ); | |
| 36 | + echo $this->field_after(); | |
| 37 | 37 | |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | } |