If you haven't installed the hack, ignore this message -- the installation instructions in the first thread and the downloadable attachment txt file have been modified.
I've had a bug on my BB after installing this hack, so if anyone who installed this hack experiences the same problem, here's the fix:
Problem: even if you select the option to "request read receipt", the PM doesn't appear in the message tracking page.
Fix: in private.php find:
Code:
// enhanced
$receipt=iif($pmreceipt=="yes",1,0);
// /enhanced
And replace with:
Code:
// enhanced
$receipt=iif($pmreceipt,1,0);
// /enhanced
(the part removed is coloured in red in the original code).