Tue 20th May '08 9:27am
|
 |
vBG.com Team
|
|
|
WBB3: Private Messages are not being imported correctly
This code in wbb3/008.php:
Code:
$userid = $idcache->get_id('user', $pm_recipt['userID']);
$username = $idcache->get_id('username', $pm_recipt['userID']);
should be:
Code:
$userid = $idcache->get_id('user', $pm_recipt['recipientID']);
$username = $idcache->get_id('username', $pm_recipt['recipientID']);
|