add auth_key in mail footer for pwg_mail_group

This commit is contained in:
plegall 2016-01-06 14:29:32 +01:00
parent 67e142f331
commit c42f15dfa8

View file

@ -555,7 +555,13 @@ SELECT
}
}
$return &= pwg_mail($u['email'], $args, $user_tpl);
$user_args = $args;
if ($authkey !== false)
{
$user_args['auth_key'] = $authkey['auth_key'];
}
$return &= pwg_mail($u['email'], $user_args, $user_tpl);
}
switch_lang_back();