Skip to content

Commit

Permalink
spacing for textarea options
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Jan 23, 2024
1 parent 7f0b490 commit 7c6e89c
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions admin/views/config-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ class="small-text"
cols="80"
name="<?php echo esc_attr( Hacks::$option_name . '[mincomlengtherror]' ); ?>"
id="mincomlengtherror"
>
<?php echo esc_html( $this->options['mincomlengtherror'] ); ?>
</textarea>
><?php echo esc_html( $this->options['mincomlengtherror'] ); ?></textarea>
</td>
</tr>
</table>
Expand Down Expand Up @@ -111,9 +109,7 @@ class="small-text"
cols="80"
name="<?php echo esc_attr( Hacks::$option_name . '[maxcomlengtherror]' ); ?>"
id="maxcomlengtherror"
>
<?php echo esc_html( $this->options['maxcomlengtherror'] ); ?>
</textarea>
><?php echo esc_html( $this->options['maxcomlengtherror'] ); ?></textarea>
</td>
</tr>
</table>
Expand Down Expand Up @@ -194,9 +190,7 @@ class="regular-text"
cols="80"
name="<?php echo esc_attr( Hacks::$option_name . '[comment_policy_error]' ); ?>"
id="comment_policy"
>
<?php echo esc_html( $this->options['comment_policy_error'] ); ?>
</textarea>
><?php echo esc_html( $this->options['comment_policy_error'] ); ?></textarea>
</td>
</tr>
</table>
Expand Down Expand Up @@ -242,9 +236,7 @@ class="regular-text"
cols="100"
name="<?php echo esc_attr( Hacks::$option_name . '[email_body]' ); ?>"
id="email_body"
>
<?php echo esc_html( $this->options['email_body'] ); ?>
</textarea>
><?php echo esc_html( $this->options['email_body'] ); ?></textarea>
</td>
</tr>
<tr>
Expand All @@ -259,9 +251,7 @@ class="regular-text"
cols="100"
name="<?php echo esc_attr( Hacks::$option_name . '[mass_email_body]' ); ?>"
id="mass_email_body"
>
<?php echo esc_html( $this->options['mass_email_body'] ); ?>
</textarea>
><?php echo esc_html( $this->options['mass_email_body'] ); ?></textarea>
</td>
</tr>
</table>
Expand Down Expand Up @@ -409,9 +399,7 @@ class="regular-text"
cols="80"
id="forward-emails-extra"
name="<?php echo esc_attr( Hacks::$option_name . '[forward_extra]' ); ?>"
>
<?php echo isset( $this->options['forward_extra'] ) ? esc_html( $this->options['forward_extra'] ) : ''; ?>
</textarea>
><?php echo isset( $this->options['forward_extra'] ) ? esc_html( $this->options['forward_extra'] ) : ''; ?></textarea>
</td>
</tr>
</table>
Expand Down

0 comments on commit 7c6e89c

Please sign in to comment.