- This topic has 1 reply, 2 voices, and was last updated 2 months, 3 weeks ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Stripe payment plugins for your WordPress site
· ·
Home › Forums › Stripe Payments Plugin › Bug detected
Hi,
I detected a bug in your code. These are details:
$customer_name = sanitize_email( $sc_attrs['customer_name'] );
Customer name is sanitized as email resulting blanked value. It shiuld be:
$customer_name = sanitize_text_field( $sc_attrs['customer_name'] );
Regards.
Thank you. I have updated the code of our plugin for this. It will go out with the next release.