- This topic has 1 reply, 2 voices, and was last updated 9 years, 2 months 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.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Tweaks › Login using email – Fails when email has trailing space
I have installed the “login using email” addon.
One of my users entered an email address with a trailing space (don’t ask me why). She was unable to login.
To fix this, I changed the addon as follows:
from:
$username_value = $username;//strip_tags($_REQUEST);
to:
$username_value = trim($username);
This is a good suggestion. I have made the change in that addon. Thank you.