| Incorrect links in letters at SOLD
in payment_verification.php at line 161
reads:
$buyltr .= "Seller's profile: {$Globals['maindir']}/member.php?u=$buyuserid\n\n";
should read:
$buyltr .= "Seller's profile: {$Globals['maindir']}/member.php? uid=$buyuserid\n\n";
It's the email that gets sent to the buyer. The bug will cause the link to point to the BUYER instead of the seller.... confusing the heck out of the buyer.
Same bug is in editproduct.php at line 472
Shows: member.php?u=
Should show: member.php?uid=
.
|