I just made a change to the docs....I'll update the rar file in the first post to reflect this change:
----------------------------------------------------------------
Code:
In modules/NS-User/user.php near line 67 find the following:
if ($userinfo['user_avatar']) {
echo "<img src=\"images/avatar/$userinfo[user_avatar]\" alt=\"\"><br>\n";
}
And change it to the following:
//` Display avatar from vB
$userid=$userinfo['pn_uid'];
if ($userid<=2) {$userid=1; }
$z = mysql_query("SELECT avatarid FROM user WHERE userid='$userid'");
$row = mysql_fetch_assoc($z);
if ($row['avatarid']>'0') {
$avatartid=$row['avatarid'];
$z = mysql_query("SELECT avatarpath FROM avatar WHERE avatarid=$avatartid");
$row = mysql_fetch_assoc($z);
$avatarfile="forums/".$row['avatarpath']."";
if (!file_exists($avatarfile)) {echo"<img src=\"URL TO BLANK GIF\"><br>\n";}//`change this to an error graphic or a default avatar if wanted
else {echo"<img src=\"$avatarfile\"><br>\n";}
}
else {
$z = mysql_query("SELECT avatarrevision FROM user WHERE userid='$userid'");//get customavatar rev num
$row = mysql_fetch_assoc($z);
if ($row['avatarrevision']>'0') {
$avatarfile="forums/custom_avatars/avatar".$userid."_".$row['avatarrevision'].".gif";
if (!file_exists($avatarfile)) { echo"<img src=\"URL TO BLANK GIF\"><br>\n";}//`change this to an error graphic or a default avatar if wanted
else { echo"<img src=\"$avatarfile\"><br>\n"; }
}
}
---------------------------------------------------------------
The above fixes a bug of when showing avatars in the PostNuke User Profile screen.
Brew