Post reports don't create threads on the same hook, so it won't work.
Open
includes/class_reportitem.php
Search for (line 243):
PHP Code:
$threadman->set('visible', 1);
Add under:
PHP Code:
($hook = vBulletinHook::fetch_hook('report_dataman')) ? eval($hook) : false;
Open up
includes/xml/hooks_vbulletin.xml
Look for (line 982):
PHP Code:
<hook>report_send_complete</hook>
Add underneath:
PHP Code:
<hook>report_dataman</hook>
Go to your plugin page, create a new plugin.
Hook:
report_dataman
Code (replace CODE with your prefix id):
PHP Code:
$threadman->set('prefixid', 'CODE');
Alternative Method
When you open
class_reportitem.php, instead of adding the custom hook, just add:
PHP Code:
$threadman->set('prefixid', 'CODE');
(replacing CODE with prefix id)
Then you're done. I prefer to use hooks so I have more control though.