2
Hi,
I presume the title bar as you call it is in your theme. If it is, directly after your link to your inbox place the following code. Include everything between the dotted lines.
---------------------------------------
<{php}>
global $xoopsUser;
if( $xoopsUser )
{
$pm_handler =& xoops_gethandler('privmessage');
$criteria = new CriteriaCompo(new Criteria('read_msg', 0));
$criteria->add(new Criteria('to_userid', $xoopsUser->getVar('uid')));
$pm = $pm_handler->getCount($criteria);
}
if( $pm )
{
echo "($pm)\n";
}
<{/php}>
--------------------------------------------
This will simply display the number of new messages in your inbox (logged on user that is) after your link to the inbox in question.
Example: INBOX (2)
Regards
Stuart
"I'm as confused as a baby in a topless bar."