Skip to content

Commit

Permalink
fix closing tags for TH elements
Browse files Browse the repository at this point in the history
Some closing tags apparently got lost at some point. Fix the closing
tags to finally complete migration to row-scoped TH.

Fixes: b919086
  • Loading branch information
stklcode committed Nov 3, 2023
1 parent 2b26f66 commit 281092c
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 281092c

Please sign in to comment.