Skip to content

Commit 3b68a7b

Browse files
fix html escaped in license form
1 parent d05f70e commit 3b68a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/licensing/views/license-form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<?php
7373
} else {
7474
?>
75-
<p><span class="status negative"><?php esc_html_e('INACTIVE', 'boxzilla'); ?></span> - <?php esc_html_e('you are <strong>not</strong> receiving plugin updates', 'boxzilla'); ?></p>
75+
<p><span class="status negative"><?php esc_html_e('INACTIVE', 'boxzilla'); ?></span> - <?php echo wp_kses(__('you are <strong>not</strong> receiving plugin updates', 'boxzilla'), [ 'strong' => [] ]); ?></p>
7676
<?php
7777
}
7878
?>

0 commit comments

Comments
 (0)