diff --git a/pmpro-approvals.php b/pmpro-approvals.php index 9dfcf0a..2ec80da 100644 --- a/pmpro-approvals.php +++ b/pmpro-approvals.php @@ -1316,9 +1316,9 @@ public static function pmpro_non_member_text_filter( $text ) { } if ( self::isPending( $current_user->ID, $user_level->id ) ) { - return esc_html__( 'Your membership requires approval before you are able to view this content.', 'pmpro-approvals' ); + return '

' . esc_html__( 'Your membership requires approval before you are able to view this content.', 'pmpro-approvals' ) . '

'; } elseif ( self::isDenied( $current_user->ID, $user_level->id ) ) { - return esc_html__( 'Your membership application has been denied. Contact the site owners if you believe this is an error.', 'pmpro-approvals' ); + return '

' . esc_html__( 'Your membership application has been denied. Contact the site owners if you believe this is an error.', 'pmpro-approvals' ) . '

'; } } }