PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.19
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.19
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/fields/FrmFieldTextarea.php +1 -11 6.266.19 View file →
@@ -9,9 +9,8 @@
9 9 class FrmFieldTextarea extends FrmFieldType {
10 10
11 11 /**
12 12 * @var string
13 - *
14 13 * @since 3.0
15 14 */
16 15 protected $type = 'textarea';
17 16
@@ -47,23 +46,14 @@
47 46 public function show_on_form_builder( $name = '' ) {
48 47 $size = FrmField::get_option( $this->field, 'size' );
49 48 $max = FrmField::get_option( $this->field, 'max' );
50 49
51 - $html_atts = array(
52 - 'name' => $this->html_name( $name ),
53 - 'id' => $this->html_id(),
54 - 'rows' => $max,
55 - 'class' => 'dyn_default_value',
56 - 'placeholder' => FrmField::get_option( $this->field, 'placeholder' ),
57 - );
58 - echo '<textarea';
59 - FrmAppHelper::array_to_html_params( $html_atts, true );
50 + echo '<textarea name="' . esc_attr( $this->html_name( $name ) ) . '" rows="' . esc_attr( $max ) . '" id="' . esc_attr( $this->html_id() ) . '" class="dyn_default_value"';
60 51
61 52 if ( $size ) {
62 53 if ( is_numeric( $size ) ) {
63 54 $size .= 'px';
64 55 }
65 -
66 56 $style = 'width:' . $size . ';';
67 57 echo ' style="' . esc_attr( $style ) . '"';
68 58 }
69 59