
06-18-2002, 01:53 PM
|
 |
|
|
Join Date: Oct 2001
Location: Brick, NJ
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
[QUOTE] Originally posted by Birdie501
Hi,
i found the error:
In the installation instructions you should change step 4 in member.php
You have to insert the code not after
PHP Code:
eval("\$referrals = \"".gettemplate("getinfo_referrals")."\";");
}
but after:
PHP Code:
eval("\$referrals = \"".gettemplate("getinfo_referrals")."\";");
}
else {
$referrals = '';
}
so that it looks like this
PHP Code:
eval("\$referrals = \"".gettemplate("getinfo_referrals")."\";");
}
else {
$referrals = '';
}
// Leave Away Message in Profile (v1.2)
if ($userinfo[away]=="1") {
$sincedate = vbdate($dateformat, $userinfo[awaydate]);
if ($userinfo[returndate]=="0000-00-00") {
$returndate = "Unbekannt";
} else {
$returnaway = explode("-", $userinfo[returndate]);
$returndate = vbdate($dateformat, mktime(0,0,0,$returnaway[1],$returnaway[2],$returnaway[0]));
}
eval("\$away .= \"".gettemplate("getinfo_away")."\";");
} else {
$away = "";
}
// Leave Away Message in Profile (v1.2)
Regards
Birdie501
|