Quote:
Originally posted by Dimitri
Only problem with ztsky's version of this hack is that the avatar will no longer display on the profile page, whether it's your edit profile page or someone else's view profile page. Can you modify the 'hack' in the members.php file so it still shows it in profile pages? Works fine otherwise.
|
just like this
in member.php,
1??find :
Code:
$userinfo[avatarurl]=getavatarurl($userinfo[userid]);
if ($userinfo[avatarurl]=="") {
$userinfo[avatarurl]="images/clear.gif";
replace with this:
Code:
$userinfo[avatarurl]=getavatarurl($userinfo[userid]);
if ($userinfo[avatarurl]=="") {
if ($userinfo[avatarrevision]>0) {
$userinfo[avatarurl]="custom_avatars/avatar$userinfo[userid]"."_$userinfo[avatarrevision].gif";
} else
$userinfo[avatarurl]="images/clear.gif";
2??find
Code:
if ($bbuserinfo[avatarurl]=="") {
$bbuserinfo[avatarurl]="images/clear.gif";
replace with this:
Code:
if ($bbuserinfo[avatarurl]=="") {
if ($bbuserinfo[avatarrevision]>0) {
$bbuserinfo[avatarurl]="custom_avatars/avatar$bbuserinfo[userid]"."_$bbuserinfo[avatarrevision].gif";
} else
$bbuserinfo[avatarurl]="images/clear.gif";