diff --git a/base-files/settings-api.php b/base-files/settings-api.php index 01de856..2eaa71c 100755 --- a/base-files/settings-api.php +++ b/base-files/settings-api.php @@ -249,7 +249,7 @@ public function form_field_text ( $args ) { $options = $this->get_settings(); echo '' . "\n"; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '' . "\n"; + echo '' . $args['data']['description'] . '' . "\n"; } } // End form_field_text() @@ -271,7 +271,7 @@ public function form_field_checkbox ( $args ) { } echo '' . "\n"; if ( $has_description ) { - echo esc_html( $args['data']['description'] ) . '' . "\n"; + echo $args['data']['description'] . '' . "\n"; } } // End form_field_text() @@ -288,7 +288,7 @@ public function form_field_textarea ( $args ) { echo '' . "\n"; if ( isset( $args['data']['description'] ) ) { - echo '
' . esc_html( $args['data']['description'] ) . '
' . "\n"; + echo '' . $args['data']['description'] . '
' . "\n"; } } // End form_field_textarea() @@ -313,7 +313,7 @@ public function form_field_select ( $args ) { echo $html; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '
' . "\n"; + echo '' . $args['data']['description'] . '
' . "\n"; } } } // End form_field_select() @@ -337,7 +337,7 @@ public function form_field_radio ( $args ) { echo $html; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '' . "\n"; + echo '' . $args['data']['description'] . '' . "\n"; } } } // End form_field_radio() @@ -365,7 +365,7 @@ public function form_field_multicheck ( $args ) { echo $html; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '' . "\n"; + echo '' . $args['data']['description'] . '' . "\n"; } } } // End form_field_multicheck() @@ -391,7 +391,7 @@ public function form_field_range ( $args ) { echo $html; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '
' . "\n"; + echo '' . $args['data']['description'] . '
' . "\n"; } } } // End form_field_range() @@ -415,7 +415,7 @@ public function form_field_images ( $args ) { echo $html; if ( isset( $args['data']['description'] ) ) { - echo '' . esc_html( $args['data']['description'] ) . '' . "\n"; + echo '' . $args['data']['description'] . '' . "\n"; } } } // End form_field_images() @@ -639,4 +639,4 @@ protected function get_array_field_types() { return array( 'multicheck' ); } // End get_array_field_types() } // End Class -?> \ No newline at end of file +?>