Skip to content

Commit

Permalink
Merge pull request #131 from pluginkollektiv/fix/tags
Browse files Browse the repository at this point in the history
fix closing tags for TH elements
  • Loading branch information
Zodiac1978 authored Nov 3, 2023
2 parents 2b26f66 + 6a6b170 commit f50542b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions inc/class-antivirus.php
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ public static function show_admin_menu() {
<label for="av_cronjob_enable">
<?php esc_html_e( 'Theme templates scan', 'antivirus' ); ?>
</label>
</td>
</th>
<td>
<input type="checkbox" name="av_cronjob_enable" id="av_cronjob_enable"
value="1" <?php checked( self::_get_option( 'cronjob_enable' ), 1 ); ?> />
Expand All @@ -775,7 +775,7 @@ public static function show_admin_menu() {
<tr>
<th scope="row">
<?php esc_html_e( 'Google Safe Browsing', 'antivirus' ); ?>
</td>
</th>
<td>
<fieldset>
<input type="checkbox" name="av_safe_browsing" id="av_safe_browsing"
Expand Down Expand Up @@ -844,7 +844,7 @@ public static function show_admin_menu() {
<label for="av_checksum_verifier">
<?php esc_html_e( 'Checksum verification', 'antivirus' ); ?>
</label>
</td>
</th>
<td>
<input type="checkbox" name="av_checksum_verifier" id="av_checksum_verifier"
value="1" <?php checked( self::_get_option( 'checksum_verifier' ), 1 ); ?> />
Expand All @@ -859,7 +859,7 @@ public static function show_admin_menu() {
<tr>
<th scope="row">
<label for="av_notify_email"><?php esc_html_e( 'Email address for notifications', 'antivirus' ); ?></label>
</td>
</th>
<td>
<input type="text" name="av_notify_email" id="av_notify_email"
value="<?php echo esc_attr( self::_get_option( 'notify_email' ) ); ?>"
Expand Down

0 comments on commit f50542b

Please sign in to comment.