diff --git src/bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php src/bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php
index dc3266dd0..d8011d520 100644
|
|
|
$settings = bp_email_get_appearance_settings(); |
| 215 | 215 | do_action( 'bp_before_email_footer' ); |
| 216 | 216 | ?> |
| 217 | 217 | |
| 218 | | <span class="footer_text"><?php echo nl2br( esc_html( stripslashes( $settings['footer_text'] ) ) ); ?></span> |
| | 218 | <span class="footer_text"><?php echo nl2br( wp_kses( stripslashes( $settings['footer_text'] ), array( 'a' => array( 'href' => true ) ) ) ); ?></span> |
| 219 | 219 | <br><br> |
| 220 | 220 | <a href="{{{unsubscribe}}}" style="text-decoration: underline;"><?php echo esc_html_x( 'unsubscribe', 'email', 'buddypress' ); ?></a> |
| 221 | 221 | |
diff --git src/bp-templates/bp-nouveau/buddypress/assets/emails/single-bp-email.php src/bp-templates/bp-nouveau/buddypress/assets/emails/single-bp-email.php
index 0550147bb..96d9740e0 100644
|
|
|
$settings = bp_email_get_appearance_settings(); |
| 215 | 215 | do_action( 'bp_before_email_footer' ); |
| 216 | 216 | ?> |
| 217 | 217 | |
| 218 | | <span class="footer_text"><?php echo nl2br( esc_html( stripslashes( $settings['footer_text'] ) ) ); ?></span> |
| | 218 | <span class="footer_text"><?php echo nl2br( wp_kses( stripslashes( $settings['footer_text'] ), array( 'a' => array( 'href' => true ) ) ) ); ?></span> |
| 219 | 219 | <br><br> |
| 220 | 220 | <a href="{{{unsubscribe}}}" style="text-decoration: underline;"><?php echo esc_html_x( 'unsubscribe', 'email', 'buddypress' ); ?></a> |
| 221 | 221 | |