Hello semag,semag wrote:NICE!!! Good thought martin... here's what I did:
...
Code: Select all
...
'USER_BAN_REASON_VERIFY' => 'Verbannt bei der Benutzerüberprüfung',));
Thanks Martin. Sorry for the rookie mistake. I'm new to all of this and then, to top it off, IE7 doesn't like to display the "install.xml" properly.Martin Truckenbrodt wrote:Hello,
@Ironhead_3 : Please check the DIY instructions! You have to add the new module.
...
Bye Martin
Code: Select all
starting at line 412...
while ($row = $db->sql_fetchrow($result))
{
$messenger->template('admin_activate', $row['user_lang']);
$messenger->to($row['user_email'], $row['username']);
$messenger->im($row['user_jabber'], $row['username']);
$messenger->assign_vars(array(
'USERNAME' => htmlspecialchars_decode($data['username']),
// Insert custom profile fields into admin activate email
'PF_FIRSTNAME' => $_POST['pf_first_name'],
'PF_CITY' => $_POST['pf_city'],
'PF_STATE' => $_POST['pf_state'],
'PF_REFERRAL' => $_POST['pf_referral'],
'PF_REASON' => $_POST['pf_reason'],
// End insert
'U_USER_DETAILS' => "$server_url/memberlist.$phpEx?mode=viewprofile&u=$user_id",
'U_ACTIVATE' => "$server_url/ucp.$phpEx?mode=activate&u=$user_id&k=$user_actkey")
);