From 19b7ef92b210557ab5403507fd0aac295f3a8f42 Mon Sep 17 00:00:00 2001 From: ashubawork Date: Thu, 3 Oct 2024 12:23:11 +0300 Subject: [PATCH] - fix attrs in tags for html textarea --- includes/core/um-filters-fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/core/um-filters-fields.php b/includes/core/um-filters-fields.php index 582016e8..481b12b8 100644 --- a/includes/core/um-filters-fields.php +++ b/includes/core/um-filters-fields.php @@ -262,7 +262,7 @@ function um_profile_field_filter_hook__textarea( $value, $data ) { if ( ! empty( $data['html'] ) ) { $height = isset( $data['height'] ) && absint( $data['height'] ) > 0 ? absint( $data['height'] ) : ''; - return ''; + return ''; } $description_key = UM()->profile()->get_show_bio_key( UM()->fields()->global_args );