| @@ -89,9 +89,9 @@ | ||
| 89 | 89 | */ |
| 90 | 90 | public function front_field_input( $args, $shortcode_atts ) { |
| 91 | 91 | $input_html = $this->get_field_input_html_hook( $this->field ); |
| 92 | 92 | $this->add_aria_description( $args, $input_html ); |
| 93 | - $rows = ( $this->field['max'] ) ? 'rows="' . esc_attr( $this->field['max'] ) . '" ' : ''; | |
| 93 | + $rows = $this->field['max'] ? 'rows="' . esc_attr( $this->field['max'] ) . '" ' : ''; | |
| 94 | 94 | |
| 95 | 95 | return '<textarea name="' . esc_attr( $args['field_name'] ) . '" id="' . esc_attr( $args['html_id'] ) . '" ' . |
| 96 | 96 | $rows . $input_html . '>' . |
| 97 | 97 | FrmAppHelper::esc_textarea( $this->field['value'] ) . |