To add a "tool tip" showing the contents of a PM in the PM Log List screen, change line 280 in admincp/rcd_pm_log.php to
Code:
$row[] = "<a target=\"_blank\" href=\"" . $vbulletin->options['bburl'] . "/misc.php?" . $vbulletin->session->vars['sessionurl'] . "do=showpm&logid=" . $pm['logid'] . "\" title=\"" . strip_tags($pm['message']) . "\">" . $pm['title'] . "</a>";
The extra code is
Code:
. "\" title=\"" . strip_tags($pm['message'])
The $pm['message'] information has already been obtained from the SQL query used to get the list of logged PMs, so the only overhead is the additional HTML code to add the contents of the PM to each log entry displayed in the AdminCP.
This saves having to open the PM in a new window if you are just having a quick check to see what the logged PM says. BBCode and Images are not rendered, you have to click on the link to read the logged PM with all the BBCode formatting, etc.