Heres how to add lightbulbs to the private messaging
In the part which is added to index.php find
Code:
$newpmcount = $newpmcounta[msgid];
below that add
Code:
if($newpmcount == 0)
{
$lightbulb = 'images/off.gif';
} else {
$lightbulb = 'images/on.gif';
}
Now go and edit the pmloggedin template and put
Code:
<img src="$lightbulb">
where you want the lightbulb to appear
That's it