Ok I think I found the bug causing the missing coma.
Find this code:
code:
if ( ($user['U_Status'] == "Administrator") && ($palVisible == "no")) {
if ($TotalInv <= 15) {
$InvMembersOnline .= "<a href="{$config[phpurl]}/showprofile.php?Cat=$Cat&User=$codedUsername&what=$phpSelf">$palUsername</a>";
if ($coma1) {
$InvMembersOnline .= ", ";
}
$coma1++;
}
continue;
}
and change it to this:
code:
if ( ($user['U_Status'] == "Administrator") && ($palVisible == "no")) {
if ($TotalInv <= 15) {
if ($coma1) {
$InvMembersOnline .= ", ";
}
$coma1++;
$InvMembersOnline .= "<a href="{$config[phpurl]}/showprofile.php?Cat=$Cat&User=$codedUsername&what=$phpSelf">$palUsername</a>";
}
continue;
}
I think that will fix it.
I'll post the new file shortly.
