Replace in: registerform.php at line: 101-104:
$m_nowFormat = str_replace("{%username%}",$user_login);
$m_nowFormat = str_replace("{%sitename%}",$m_stSiteURL);
$m_nowFormat = str_replace("{%sitelink%}",$m_stSiteLink);
$m_nowFormat = str_replace("{%password%}",$user_pass);
with:
$m_nowFormat = str_replace("{%username%}", $user_login, $m_nowFormat);
$m_nowFormat = str_replace("{%sitename%}",$m_stSiteURL, $m_nowFormat);
$m_nowFormat = str_replace("{%sitelink%}",$m_stSiteLink, $m_nowFormat);
$m_nowFormat = str_replace("{%password%}",$user_pass, $m_nowFormat);
Coudl you elaborate ?
It looks like you're new here. If you want to get involved, click one of these buttons!