You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great plugin so far, just a small bug I found in the newest version...
Issue description
After creating a custom HTML template for the user welcome e-mail, the typed HTML tags are not used in the final e-mail. The preview function works properly tho.
I tracked the issue down to the file 'includes/filters-wp.php' @ Line: 162 $user_email = htmlspecialchars_decode( stripslashes( $user_email ) );
Possible Solution
Remove line 162 and sanitize possible user input before it gets mixed into the template.
Beware, the same function/method is used on for other registration types on line 178, 189 and 200 too and may cause the same negative effect.
Version used
3.0
The text was updated successfully, but these errors were encountered:
Hello! :)
Great plugin so far, just a small bug I found in the newest version...
Issue description
After creating a custom HTML template for the user welcome e-mail, the typed HTML tags are not used in the final e-mail. The preview function works properly tho.
I tracked the issue down to the file 'includes/filters-wp.php' @ Line: 162
$user_email = htmlspecialchars_decode( stripslashes( $user_email ) );
Possible Solution
Remove line 162 and sanitize possible user input before it gets mixed into the template.
Beware, the same function/method is used on for other registration types on line 178, 189 and 200 too and may cause the same negative effect.
Version used
3.0
The text was updated successfully, but these errors were encountered: