It also means, of course, that you will be helping us test the fix – so thanks. OK…
Both files that need changes are in the HTML Email plugin. First file is:
html-email/sp-html-email-plugin.php
Around line 48 find this line of code:
add_filter('sph_user_new_user_email_subject', 'sp_html_email_new_user_subject', 10, 3);
and change that 3 at the end to 2.
Then down at line 324, change this function:
function sp_html_email_pw_change_body($msg, $key, $pw) {
include_once(SPHTMLEMAILLIBDIR.'sp-html-email-components.php');
$msg = sp_html_email_do_pw_change_body($msg, $key, $pw);
return $msg;
}
To remove the $pw argument on the 1st and 3rd lines (as well as the comma before them of course)
The other file is:
html-email/library/sp-html-email-components.php
in line 101 find:
function sp_html_email_do_pw_change_body($body, $key, $pw) {
and again remove the comma and $pw at the end of the arguments to the function.
Hope that is clear…