Skip to content

Commit

Permalink
fixing escape attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
linusx committed Feb 23, 2024
1 parent dad5fc8 commit 49f3880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/templates/admin/user/date-time.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<?php esc_html_e( 'Date & Time Formatting', 'gatherpress' ); ?>
</h2>
<div>
<?php esc_html_e( 'For more information read the <a href="https://wordpress.org/documentation/article/customize-date-and-time-format/">Documentation on date and time formatting</a>.', 'gatherpress' ); ?>
<?php echo __( wp_kses( 'For more information read the <a href="https://wordpress.org/documentation/article/customize-date-and-time-format/" target="_blank">Documentation on date and time formatting</a>.', array( 'a' => array( 'href' => array(), 'target' => array() ) ) ), 'gatherpress' ); ?>
</div>
<table class="form-table">
<tr>
Expand Down

0 comments on commit 49f3880

Please sign in to comment.